X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Flib%2Flttng-ctl%2Flttng-ctl-helper.h;h=b7a28268cb3b4ce83b95eb978667951527064212;hb=8d7f6956990e8d0e0f32a532321db44263c6903f;hp=ed9a24fbfcb5f02508b9d3f2ab7a8456e00b1a4d;hpb=cac3069d663ba0887b2abf4f114974ae3c0feb91;p=lttng-tools.git diff --git a/src/lib/lttng-ctl/lttng-ctl-helper.h b/src/lib/lttng-ctl/lttng-ctl-helper.h index ed9a24fbf..b7a28268c 100644 --- a/src/lib/lttng-ctl/lttng-ctl-helper.h +++ b/src/lib/lttng-ctl/lttng-ctl-helper.h @@ -18,7 +18,6 @@ #ifndef LTTNG_CTL_HELPER_H #define LTTNG_CTL_HELPER_H -#define _GNU_SOURCE #include #include @@ -36,14 +35,14 @@ void lttng_ctl_copy_lttng_domain(struct lttng_domain *dst, struct lttng_domain *src); /* - * Sends the lttcomm message to the session daemon and fills buf of the + * Sends the lttcomm message to the session daemon and fills buf if the * returned data is not NULL. * * Return the size of the received data on success or else a negative lttng * error code. If buf is NULL, 0 is returned on success. */ int lttng_ctl_ask_sessiond_varlen(struct lttcomm_session_msg *lsm, - void *vardata, size_t varlen, void **buf); + const void *vardata, size_t varlen, void **buf); /* * Use this if no variable length data needs to be sent. @@ -54,4 +53,6 @@ int lttng_ctl_ask_sessiond(struct lttcomm_session_msg *lsm, void **buf) return lttng_ctl_ask_sessiond_varlen(lsm, NULL, 0, buf); } +int lttng_check_tracing_group(void); + #endif /* LTTNG_CTL_HELPER_H */