fix: removed accidental VLA in _get_num_possible_cpus()
[lttng-ust.git] / liblttng-ust-ctl / ustctl.c
index 8e2e8f1b8b4eabf7e617a585198d5dc296db2ee1..9e650466481705b35fce7306d875d7a54c994987 100644 (file)
@@ -77,8 +77,6 @@ extern void lttng_ring_buffer_client_discard_exit(void);
 extern void lttng_ring_buffer_client_discard_rt_exit(void);
 extern void lttng_ring_buffer_metadata_client_exit(void);
 
-volatile enum ust_loglevel ust_loglevel;
-
 int ustctl_release_handle(int sock, int handle)
 {
        struct ustcomm_ust_msg lum;
@@ -1057,7 +1055,8 @@ struct ustctl_consumer_channel *
                        attr->switch_timer_interval,
                        attr->read_timer_interval,
                        attr->uuid, attr->chan_id,
-                       stream_fds, nr_stream_fds);
+                       stream_fds, nr_stream_fds,
+                       attr->blocking_timeout);
        if (!chan->chan) {
                goto chan_error;
        }
This page took 0.02321 seconds and 4 git commands to generate.