�ú��������߳��б�����
| 55 | |
| 56 | // �ú��������߳��б����� |
| 57 | void rpc_request::run(ipc_client* ipc) |
| 58 | { |
| 59 | ipc_ = ipc; |
| 60 | rpc_run(); |
| 61 | /* |
| 62 | IPC_DAT data; |
| 63 | data.req = this; |
| 64 | data.ctx = NULL; |
| 65 | // �����̷߳��ͽ�� |
| 66 | ipc->send_message(RPC_MSG, &data, sizeof(data)); |
| 67 | */ |
| 68 | dat_.ctx = NULL; |
| 69 | |
| 70 | // �����̷߳��ͽ�� |
| 71 | ipc->send_message(RPC_MSG, &dat_, sizeof(RPC_DAT)); |
| 72 | } |
| 73 | |
| 74 | // �ú��������߳��б����� |
| 75 | #ifdef ACL_WINDOWS |
nothing calls this directly
no test coverage detected