X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=include%2Flttng%2Fust-events.h;h=afcc67f910795aaf10cfa63a2be3e0fa58f34741;hb=05ceaafdd290220147a1faf4ca78d440f1e279b4;hp=63162948d67563028a130ba1c833075f6b5b9d21;hpb=8236ba105157889ebc49554b20a6c46211f1a663;p=lttng-ust.git diff --git a/include/lttng/ust-events.h b/include/lttng/ust-events.h index 63162948..afcc67f9 100644 --- a/include/lttng/ust-events.h +++ b/include/lttng/ust-events.h @@ -195,6 +195,7 @@ struct lttng_probe_desc { const struct lttng_event_desc *event_desc; unsigned int nr_events; struct cds_list_head head; /* chain registered probes */ + struct tracepoint_loglevel *loglevels; }; struct ust_pending_probe; @@ -302,6 +303,17 @@ struct ltt_transport { struct ltt_channel_ops ops; }; +struct tracepoint_loglevel_enum_entry { + const char *identifier; + long value; +}; + +/* mapping between tracepoint and loglevel */ +struct tracepoint_loglevel { + const char *name; + const struct tracepoint_loglevel_enum_entry *loglevel; +}; + struct ltt_session *ltt_session_create(void); int ltt_session_enable(struct ltt_session *session); int ltt_session_disable(struct ltt_session *session);