From: Jérémie Galarneau Date: Wed, 26 Aug 2015 16:02:50 +0000 (-0400) Subject: Docs: Add documentation explaining the meaning of "internal" events X-Git-Tag: v2.8.0-rc1~461 X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=5b37cc51aaa06af23d7bd70368ffd94f569effba Docs: Add documentation explaining the meaning of "internal" events Signed-off-by: Jérémie Galarneau --- diff --git a/src/bin/lttng-sessiond/trace-ust.h b/src/bin/lttng-sessiond/trace-ust.h index f114628d0..4a818df1a 100644 --- a/src/bin/lttng-sessiond/trace-ust.h +++ b/src/bin/lttng-sessiond/trace-ust.h @@ -53,6 +53,12 @@ struct ltt_ust_event { char *filter_expression; struct lttng_ust_filter_bytecode *filter; struct lttng_event_exclusion *exclusion; + /* + * An internal event is an event which was created by the session daemon + * through which, for example, events emitted in Agent domains are + * "funelled". This is used to hide internal events from external + * clients as they should never be modified by the external world. + */ bool internal; };