X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fbin%2Flttng-sessiond%2Flttng-sessiond.h;h=5b6761f55c216801b4327e20347237bb3963c451;hb=52a0e9318791b1f188742059e904d42ee0d7e231;hp=243138a9f043311eb611318b0b2d058eda69587f;hpb=917a718d4ec336ca98820f3cf56a2db57fc9b1dd;p=lttng-tools.git diff --git a/src/bin/lttng-sessiond/lttng-sessiond.h b/src/bin/lttng-sessiond/lttng-sessiond.h index 243138a9f..5b6761f55 100644 --- a/src/bin/lttng-sessiond/lttng-sessiond.h +++ b/src/bin/lttng-sessiond/lttng-sessiond.h @@ -25,6 +25,7 @@ #include #include #include +#include #include "session.h" #include "ust-app.h" @@ -41,6 +42,9 @@ enum consumerd_state { CONSUMER_ERROR = 3, }; +/* Unique identifier of a session daemon instance. */ +extern lttng_uuid sessiond_uuid; + /* * This consumer daemon state is used to validate if a client command will be * able to reach the consumer. If not, the client is informed. For instance, @@ -125,12 +129,6 @@ struct ust_reg_wait_node { struct cds_list_head head; }; -/* - * This pipe is used to inform the thread managing application notify - * communication that a command is queued and ready to be processed. - */ -extern int apps_cmd_notify_pipe[2]; - /* * Used to notify that a hash table needs to be destroyed by dedicated * thread. Required by design because we don't want to move destroy @@ -153,8 +151,6 @@ extern struct health_app *health_sessiond; extern struct sessiond_config config; -extern int lttng_sessiond_ready; - extern int ust_consumerd64_fd, ust_consumerd32_fd; /* Parent PID for --sig-parent option */ @@ -174,7 +170,6 @@ int sessiond_notify_quit_pipe(void); void sessiond_close_quit_pipe(void); int sessiond_set_thread_pollset(struct lttng_poll_event *events, size_t size); -void sessiond_notify_ready(void); void sessiond_signal_parents(void); void sessiond_set_client_thread_state(bool running);