From a2cf84ecde926adeebf09bc2c284401513d3fab3 Mon Sep 17 00:00:00 2001 From: Jose Bollo Date: Fri, 15 Feb 2019 13:41:38 +0100 Subject: hooks: Allow to remove hooking (and/or trace) This change allows to downsize the binder by removing its internal hooking and tracing features. Change-Id: Ifb080a7426216f6c6b1c8f8e5bf8ddd52df40a3e Signed-off-by: Jose Bollo --- src/afb-evt.h | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'src/afb-evt.h') diff --git a/src/afb-evt.h b/src/afb-evt.h index 28a4eddd..5ba6ce9b 100644 --- a/src/afb-evt.h +++ b/src/afb-evt.h @@ -43,27 +43,21 @@ extern struct afb_evtid *afb_evt_evtid_create(const char *fullname); extern struct afb_evtid *afb_evt_evtid_create2(const char *prefix, const char *name); extern struct afb_evtid *afb_evt_evtid_addref(struct afb_evtid *evtid); -extern struct afb_evtid *afb_evt_evtid_hooked_addref(struct afb_evtid *evtid); extern void afb_evt_evtid_unref(struct afb_evtid *evtid); -extern void afb_evt_evtid_hooked_unref(struct afb_evtid *evtid); extern const char *afb_evt_evtid_fullname(struct afb_evtid *evtid); extern int afb_evt_evtid_id(struct afb_evtid *evtid); extern const char *afb_evt_evtid_name(struct afb_evtid *evtid); -extern const char *afb_evt_evtid_hooked_name(struct afb_evtid *evtid); extern int afb_evt_evtid_push(struct afb_evtid *evtid, struct json_object *obj); -extern int afb_evt_evtid_hooked_push(struct afb_evtid *evtid, struct json_object *obj); extern int afb_evt_evtid_broadcast(struct afb_evtid *evtid, struct json_object *object); -extern int afb_evt_evtid_hooked_broadcast(struct afb_evtid *evtid, struct json_object *object); extern int afb_evt_watch_add_evtid(struct afb_evt_listener *listener, struct afb_evtid *evtid); extern int afb_evt_watch_sub_evtid(struct afb_evt_listener *listener, struct afb_evtid *evtid); -extern void afb_evt_update_hooks(); extern struct afb_event_x2 *afb_evt_event_x2_create(const char *fullname); @@ -83,3 +77,11 @@ extern struct afb_evtid *afb_evt_event_x2_to_evtid(struct afb_event_x2 *eventid) extern struct afb_event_x2 *afb_evt_event_x2_from_evtid(struct afb_evtid *evtid); extern struct afb_event_x1 afb_evt_event_from_evtid(struct afb_evtid *evtid); +#if WITH_AFB_HOOK +extern struct afb_evtid *afb_evt_evtid_hooked_addref(struct afb_evtid *evtid); +extern void afb_evt_evtid_hooked_unref(struct afb_evtid *evtid); +extern const char *afb_evt_evtid_hooked_name(struct afb_evtid *evtid); +extern int afb_evt_evtid_hooked_push(struct afb_evtid *evtid, struct json_object *obj); +extern int afb_evt_evtid_hooked_broadcast(struct afb_evtid *evtid, struct json_object *object); +extern void afb_evt_update_hooks(); +#endif \ No newline at end of file -- cgit 1.2.3-korg