X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fbin%2Flttng-sessiond%2Fust-app.h;h=d713f223b128ec7bd52fda53037046394885abe4;hp=605b4a69b5a4a027b5cdde8e5e91d6363720603f;hb=c4a1715b6c7b500eac97e149b3994a877f3023bb;hpb=601d5acf42ebdb05ff8aa19f12fd9bdad3602781 diff --git a/src/bin/lttng-sessiond/ust-app.h b/src/bin/lttng-sessiond/ust-app.h index 605b4a69b..d713f223b 100644 --- a/src/bin/lttng-sessiond/ust-app.h +++ b/src/bin/lttng-sessiond/ust-app.h @@ -33,6 +33,12 @@ struct lttng_ust_filter_bytecode; extern int ust_consumerd64_fd, ust_consumerd32_fd; +struct ust_app_ht_key { + const char *name; + const struct lttng_ust_filter_bytecode *filter; + enum lttng_ust_loglevel_type loglevel; +}; + /* * Application registration data structure. */ @@ -168,9 +174,6 @@ int ust_app_disable_event_glb(struct ltt_ust_session *usess, struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent); int ust_app_add_ctx_channel_glb(struct ltt_ust_session *usess, struct ltt_ust_channel *uchan, struct ltt_ust_context *uctx); -int ust_app_set_filter_event_glb(struct ltt_ust_session *usess, - struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent, - struct lttng_filter_bytecode *bytecode); void ust_app_global_update(struct ltt_ust_session *usess, int sock); void ust_app_clean_list(void); @@ -342,13 +345,6 @@ int ust_app_calibrate_glb(struct lttng_ust_calibrate *calibrate) { return 0; } -static inline -int ust_app_set_filter_event_glb(struct ltt_ust_session *usess, - struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent, - struct lttng_filter_bytecode *bytecode) -{ - return 0; -} #endif /* HAVE_LIBLTTNG_UST_CTL */