X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fbin%2Flttng-consumerd%2Flttng-consumerd.c;h=59397594b914c2c99533ff408d77d9c824c08034;hp=e05a4b150f1b3b852cec82e5e6292de5a83796c5;hb=d3e2ba59faddb31870e2ce29b6a881f7ad5ad883;hpb=7ce3675685dbbc7be9536eb9c2b5ff8d677dc0b5 diff --git a/src/bin/lttng-consumerd/lttng-consumerd.c b/src/bin/lttng-consumerd/lttng-consumerd.c index e05a4b150..59397594b 100644 --- a/src/bin/lttng-consumerd/lttng-consumerd.c +++ b/src/bin/lttng-consumerd/lttng-consumerd.c @@ -367,17 +367,11 @@ int main(int argc, char **argv) lttng_consumer_set_error_sock(ctx, ret); /* - * For UST consumer, we block RT signals used for periodical metadata flush - * in main and create a dedicated thread to handle these signals. + * Block RT signals used for UST periodical metadata flush and the live + * timer in main, and create a dedicated thread to handle these signals. */ - switch (opt_type) { - case LTTNG_CONSUMER32_UST: - case LTTNG_CONSUMER64_UST: - consumer_signal_init(); - break; - default: - break; - } + consumer_signal_init(); + ctx->type = opt_type; /* Initialize communication library */ @@ -415,25 +409,21 @@ int main(int argc, char **argv) goto sessiond_error; } - switch (opt_type) { - case LTTNG_CONSUMER32_UST: - case LTTNG_CONSUMER64_UST: - /* Create the thread to manage the metadata periodic timers */ - ret = pthread_create(&metadata_timer_thread, NULL, - consumer_timer_metadata_thread, (void *) ctx); - if (ret != 0) { - perror("pthread_create"); - goto metadata_timer_error; - } + /* + * Create the thread to manage the UST metadata periodic timer and + * live timer. + */ + ret = pthread_create(&metadata_timer_thread, NULL, + consumer_timer_thread, (void *) ctx); + if (ret != 0) { + perror("pthread_create"); + goto metadata_timer_error; + } - ret = pthread_detach(metadata_timer_thread); - if (ret) { - errno = ret; - perror("pthread_detach"); - } - break; - default: - break; + ret = pthread_detach(metadata_timer_thread); + if (ret) { + errno = ret; + perror("pthread_detach"); } metadata_timer_error: