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(unsigned int timeout_us
)
80 struct timeval timeout
;
83 FD_SET(thread_quit_pipe
[0], &read_fds
);
84 memset(&timeout
, 0, sizeof(timeout
));
85 timeout
.tv_sec
= timeout_us
/ USEC_PER_SEC
;
86 timeout
.tv_usec
= timeout_us
% USEC_PER_SEC
;
89 ret
= select(thread_quit_pipe
[0] + 1, &read_fds
, NULL
, NULL
,
90 timeout_us
!= -1U ? &timeout
: NULL
);
91 if (ret
< 0 && errno
== EINTR
) {
92 /* Retry on interrupt. */
102 } else if (ret
< 0 && errno
!= EINTR
) {
104 PERROR("Failed to select() thread quit pipe");
107 /* Timeout reached. */
114 int sessiond_notify_quit_pipe(void)
116 return notify_thread_pipe(thread_quit_pipe
[1]);
119 void sessiond_close_quit_pipe(void)
121 utils_close_pipe(thread_quit_pipe
);
125 int __sessiond_set_thread_pollset(struct lttng_poll_event
*events
, size_t size
,
132 ret
= lttng_poll_create(events
, size
, LTTNG_CLOEXEC
);
138 ret
= lttng_poll_add(events
, a_pipe
[0], LPOLLIN
| LPOLLERR
);
150 * Create a poll set with O_CLOEXEC and add the thread quit pipe to the set.
152 int sessiond_set_thread_pollset(struct lttng_poll_event
*events
, size_t size
)
154 return __sessiond_set_thread_pollset(events
, size
, thread_quit_pipe
);
This page took 0.032422 seconds and 4 git commands to generate.