X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fbin%2Flttng-sessiond%2Fnotification-thread.h;h=48b6bce3a49dcb10f2754877d7b3f8f98b67ab03;hp=eb8beb0d800588c58293aeb1471c18a040d3f9a8;hb=4a91420cefb94afc4a20042bdbe2564086dad3cb;hpb=51eab943fe37b0fdd541099c4d02ea7b57cb15bb diff --git a/src/bin/lttng-sessiond/notification-thread.h b/src/bin/lttng-sessiond/notification-thread.h index eb8beb0d8..48b6bce3a 100644 --- a/src/bin/lttng-sessiond/notification-thread.h +++ b/src/bin/lttng-sessiond/notification-thread.h @@ -27,6 +27,7 @@ #include #include #include +#include "thread.h" struct notification_thread_handle { /* @@ -48,10 +49,8 @@ struct notification_thread_handle { int ust64_consumer; int kernel_consumer; } channel_monitoring_pipes; - /* - * To inform the rotation thread we are ready. - */ - sem_t *notification_thread_ready; + /* Used to wait for the launch of the notification thread. */ + sem_t ready; }; /** @@ -215,11 +214,10 @@ struct notification_thread_state { struct notification_thread_handle *notification_thread_handle_create( struct lttng_pipe *ust32_channel_monitor_pipe, struct lttng_pipe *ust64_channel_monitor_pipe, - struct lttng_pipe *kernel_channel_monitor_pipe, - sem_t *notification_thread_ready); + struct lttng_pipe *kernel_channel_monitor_pipe); void notification_thread_handle_destroy( struct notification_thread_handle *handle); - -void *thread_notification(void *data); +struct lttng_thread *launch_notification_thread( + struct notification_thread_handle *handle); #endif /* NOTIFICATION_THREAD_H */