mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-02 03:47:53 +08:00
9697f95b8f
This reverts commit 15d999759e
.
21 lines
394 B
C
21 lines
394 B
C
#ifndef __SERVICE_IPC_INCLUDE_H__
|
|
#define __SERVICE_IPC_INCLUDE_H__
|
|
|
|
#include "lib_acl.h"
|
|
#include "service_struct.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void service_ipc_init(ACL_AIO *aio, int nthreads);
|
|
void service_ipc_add_service(SERVICE *service,
|
|
module_service_main_fn service_callback);
|
|
void service_ipc_add(ACL_SOCKET fd);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|