Fix: enable-consumer for all domains missing dir
[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
DG
25#include "utils.h"
26
54d01ffb
DG
27/*
28 * Write to writable pipe used to notify a thread.
29 */
30int notify_thread_pipe(int wpipe)
31{
32 int ret;
33
2f77fc4b
DG
34 /* Ignore if the pipe is invalid. */
35 if (wpipe < 0) {
36 return 0;
37 }
38
6f94560a
MD
39 do {
40 ret = write(wpipe, "!", 1);
41 } while (ret < 0 && errno == EINTR);
54d01ffb 42 if (ret < 0) {
7272acf5 43 PERROR("write poll pipe");
54d01ffb
DG
44 }
45
46 return ret;
47}
48
b082db07 49/*
050349bb 50 * Return pointer to home directory path using the env variable HOME.
b082db07 51 *
050349bb 52 * No home, NULL is returned.
b082db07
DG
53 */
54const char *get_home_dir(void)
55{
56 return ((const char *) getenv("HOME"));
57}
This page took 0.033404 seconds and 4 git commands to generate.