| 243 | } |
| 244 | |
| 245 | void master_service::proc_on_init(void) |
| 246 | { |
| 247 | // ����첽��ܵ��¼������� |
| 248 | acl::aio_handle* handle = this->get_handle(); |
| 249 | if (handle == NULL) { |
| 250 | logger_fatal("aio handle null!"); |
| 251 | } |
| 252 | |
| 253 | // ��ʼ�� rpc ������� |
| 254 | rpc_manager::get_instance().init(*handle, var_cfg_thread_pool_limit); |
| 255 | } |
| 256 | |
| 257 | void master_service::proc_on_exit(void) |
| 258 | { |
nothing calls this directly
no test coverage detected