From 47cedda89471702f04f447d2dd25d3fee6fdf87b Mon Sep 17 00:00:00 2001 From: Angus Salkeld Date: Thu, 25 Nov 2010 10:46:15 +1100 Subject: [PATCH] IPC: export qb_ipcs_disconnect() Signed-off-by: Angus Salkeld --- include/qb/qbipcs.h | 2 ++ lib/ipc_int.h | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/qb/qbipcs.h b/include/qb/qbipcs.h index 3e175db..5d2420b 100644 --- a/include/qb/qbipcs.h +++ b/include/qb/qbipcs.h @@ -218,6 +218,8 @@ void qb_ipcs_connection_ref_inc(qb_ipcs_connection_t *c); */ void qb_ipcs_connection_ref_dec(qb_ipcs_connection_t *c); +void qb_ipcs_disconnect(qb_ipcs_connection_t *c); + /** * Get the service id related to this connection's service. * (as passed into qb_ipcs_create() diff --git a/lib/ipc_int.h b/lib/ipc_int.h index 01f9ead..e609302 100644 --- a/lib/ipc_int.h +++ b/lib/ipc_int.h @@ -196,6 +196,4 @@ struct qb_ipcs_connection* qb_ipcs_connection_alloc(struct qb_ipcs_service *s); int32_t qb_ipcs_process_request(struct qb_ipcs_service *s, struct qb_ipc_request_header *hdr); -void qb_ipcs_disconnect(struct qb_ipcs_connection *c); - #endif /* QB_IPC_INT_H_DEFINED */