2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 * 2013 - Jérémie Galarneau <jeremie.galarneau@efficios.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License, version 2 only,
8 * as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #include "lttng-sessiond.h"
22 #include <common/utils.h>
26 * Quit pipe for all threads. This permits a single cancellation point
27 * for all threads when receiving an event on the pipe.
29 static int thread_quit_pipe
[2] = { -1, -1 };
32 * Init thread quit pipe.
34 * Return -1 on error or 0 if all pipes are created.
36 static int __init_thread_quit_pipe(int *a_pipe
)
42 PERROR("thread quit pipe");
46 for (i
= 0; i
< 2; i
++) {
47 ret
= fcntl(a_pipe
[i
], F_SETFD
, FD_CLOEXEC
);
58 int sessiond_init_thread_quit_pipe(void)
60 return __init_thread_quit_pipe(thread_quit_pipe
);
63 int sessiond_check_thread_quit_pipe(int fd
, uint32_t events
)
65 return (fd
== thread_quit_pipe
[0] && (events
& LPOLLIN
));
69 * Wait for a notification on the quit pipe (with a timeout).
71 * A timeout value of -1U means no timeout.
73 * Returns 1 if the caller should quit, 0 if the timeout was reached, and
74 * -1 if an error was encountered.
76 int sessiond_wait_for_quit_pipe(int timeout_ms
)
79 struct lttng_poll_event events
;
81 ret
= lttng_poll_create(&events
, 1, LTTNG_CLOEXEC
);
83 PERROR("Failed to initialize poll/epoll set");
87 ret
= lttng_poll_add(&events
, thread_quit_pipe
[0], LPOLLIN
| LPOLLERR
);
89 PERROR("Failed to add file descriptor to poll/epoll set");
93 ret
= lttng_poll_wait(&events
, timeout_ms
);
97 } else if (ret
< 0 && errno
!= EINTR
) {
99 PERROR("Failed to epoll()/poll() thread quit pipe");
102 /* Timeout reached. */
106 lttng_poll_clean(&events
);
111 int sessiond_notify_quit_pipe(void)
113 return notify_thread_pipe(thread_quit_pipe
[1]);
116 void sessiond_close_quit_pipe(void)
118 utils_close_pipe(thread_quit_pipe
);
122 int __sessiond_set_thread_pollset(struct lttng_poll_event
*events
, size_t size
,
129 ret
= lttng_poll_create(events
, size
, LTTNG_CLOEXEC
);
135 ret
= lttng_poll_add(events
, a_pipe
[0], LPOLLIN
| LPOLLERR
);
147 * Create a poll set with O_CLOEXEC and add the thread quit pipe to the set.
149 int sessiond_set_thread_pollset(struct lttng_poll_event
*events
, size_t size
)
151 return __sessiond_set_thread_pollset(events
, size
, thread_quit_pipe
);
This page took 0.032815 seconds and 4 git commands to generate.