Implement consumer ring buffer position sampling
[lttng-tools.git] / src / bin / lttng-consumerd / lttng-consumerd.c
index 2f8eed1085dfed209ba5f00979621e2f603d44be..9fb4747536ad7fb3551217f1f3d6aaa0198caae6 100644 (file)
@@ -538,7 +538,7 @@ int main(int argc, char **argv)
                goto exit_data_thread;
        }
 
-       /* Create the thread to manage the receive of fd */
+       /* Create the thread to manage the reception of fds */
        ret = pthread_create(&sessiond_thread, default_pthread_attr(),
                        consumer_thread_sessiond_poll,
                        (void *) ctx);
@@ -583,6 +583,14 @@ exit_metadata_timer_thread:
                PERROR("pthread_join sessiond_thread");
                retval = -1;
        }
+
+       ret = consumer_timer_thread_get_channel_monitor_pipe();
+       if (ret >= 0) {
+               ret = close(ret);
+               if (ret) {
+                       PERROR("close channel monitor pipe");
+               }
+       }
 exit_sessiond_thread:
 
        ret = pthread_join(data_thread, &status);
This page took 0.023162 seconds and 4 git commands to generate.