Move health into its own common/ static library
[lttng-tools.git] / src / bin / lttng-sessiond / utils.c
CommitLineData
8e68d1c8 1/*
996b65c8 2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
1e307fab 3 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8e68d1c8 4 *
d14d33bf
AM
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License, version 2 only,
7 * as published by the Free Software Foundation.
8e68d1c8 8 *
d14d33bf
AM
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
8e68d1c8 13 *
d14d33bf
AM
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
8e68d1c8
DG
17 */
18
19#define _GNU_SOURCE
8e68d1c8 20#include <stdlib.h>
8e68d1c8
DG
21#include <unistd.h>
22
db758600 23#include <common/error.h>
7272acf5 24
8e68d1c8 25#include "utils.h"
0b2dc8df
MD
26#include "lttng-sessiond.h"
27
28int ht_cleanup_pipe[2] = { -1, -1 };
8e68d1c8 29
54d01ffb
DG
30/*
31 * Write to writable pipe used to notify a thread.
32 */
33int notify_thread_pipe(int wpipe)
34{
35 int ret;
36
2f77fc4b
DG
37 /* Ignore if the pipe is invalid. */
38 if (wpipe < 0) {
39 return 0;
40 }
41
6f94560a
MD
42 do {
43 ret = write(wpipe, "!", 1);
44 } while (ret < 0 && errno == EINTR);
54d01ffb 45 if (ret < 0) {
7272acf5 46 PERROR("write poll pipe");
54d01ffb
DG
47 }
48
49 return ret;
50}
51
0b2dc8df
MD
52void ht_cleanup_push(struct lttng_ht *ht)
53{
54 int ret;
55 int fd = ht_cleanup_pipe[1];
56
57 if (fd < 0)
58 return;
59 do {
60 ret = write(fd, &ht, sizeof(ht));
61 } while (ret < 0 && errno == EINTR);
62 if (ret < 0 || ret != sizeof(ht)) {
63 PERROR("write ht cleanup pipe %d", fd);
64 if (ret < 0) {
65 ret = -errno;
66 }
67 goto error;
68 }
69
70 /* All good. Don't send back the write positive ret value. */
71 ret = 0;
72error:
73 assert(!ret);
74}
This page took 0.0456 seconds and 5 git commands to generate.