2 * Copyright (C) 2017 - Julien Desfossez <jdesfossez@efficios.com>
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License, version 2 only, as
6 * published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc., 51
15 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 #ifndef ROTATION_THREAD_H
19 #define ROTATION_THREAD_H
21 #include <urcu/list.h>
23 #include <urcu/rculfhash.h>
24 #include <lttng/domain.h>
25 #include <common/pipe.h>
26 #include <common/compat/poll.h>
27 #include <common/hashtable/hashtable.h>
32 * The timer thread enqueues struct sessiond_rotation_timer objects in the list
33 * and wake up the rotation thread. When the rotation thread wakes up, it
36 struct rotation_thread_timer_queue
{
37 struct lttng_pipe
*event_pipe
;
38 struct cds_list_head list
;
42 struct rotation_thread_handle
{
44 * Read side of pipes used to communicate with the rotation thread.
46 /* Notification from the consumers */
52 struct rotation_thread_timer_queue
*rotation_timer_queue
;
55 struct rotation_thread_handle
*rotation_thread_handle_create(
56 struct lttng_pipe
*ust32_channel_rotate_pipe
,
57 struct lttng_pipe
*ust64_channel_rotate_pipe
,
58 struct lttng_pipe
*kernel_channel_rotate_pipe
,
60 struct rotation_thread_timer_queue
*rotation_timer_queue
);
62 void rotation_thread_handle_destroy(
63 struct rotation_thread_handle
*handle
);
65 void *thread_rotation(void *data
);
67 #endif /* ROTATION_THREAD_H */