2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
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.
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.
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.
23 #include <common/error.h>
28 * Write to writable pipe used to notify a thread.
30 int notify_thread_pipe(int wpipe
)
35 ret
= write(wpipe
, "!", 1);
36 } while (ret
< 0 && errno
== EINTR
);
38 PERROR("write poll pipe");
45 * Return pointer to home directory path using the env variable HOME.
47 * No home, NULL is returned.
49 const char *get_home_dir(void)
51 return ((const char *) getenv("HOME"));
This page took 0.031077 seconds and 4 git commands to generate.