Cleanup: apply `include-what-you-use` guideline for `uint*_t`
[lttng-ust.git] / libringbuffer / frontend.h
index a2f74596eb9c06f319236309d2f36cdae2eaca99..838f88e8eecf50d836dafb52b833e3aa103c65b4 100644 (file)
@@ -28,6 +28,8 @@
  *
  * See ring_buffer_frontend.c for more information on wait-free algorithms.
  */
+#include <stddef.h>
+#include <stdint.h>
 
 #include <urcu/compiler.h>
 #include <urcu/uatomic.h>
@@ -65,7 +67,8 @@ struct lttng_ust_shm_handle *channel_create(const struct lttng_ust_lib_ring_buff
                                size_t subbuf_size, size_t num_subbuf,
                                unsigned int switch_timer_interval,
                                unsigned int read_timer_interval,
-                               const int *stream_fds, int nr_stream_fds);
+                               const int *stream_fds, int nr_stream_fds,
+                               int64_t blocking_timeout);
 
 /*
  * channel_destroy finalizes all channel's buffers, waits for readers to
This page took 0.022508 seconds and 4 git commands to generate.