4da5f498e6556de40a9d024f89a9eb9dc7fb8243
[lttng-tools.git] / ltt-sessiond / utils.h
1 #ifndef _LTT_UTILS_H
2 #define _LTT_UTILS_H
3
4 /*
5 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
6 * Copyright (C) 2011 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the Free
10 * Software Foundation; only version 2 of the License.
11 *
12 * This program is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * more details.
16 *
17 * You should have received a copy of the GNU General Public License along with
18 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
19 * Place - Suite 330, Boston, MA 02111-1307, USA.
20 */
21
22 #include <unistd.h>
23
24 #ifndef ARRAY_SIZE
25 #define ARRAY_SIZE(array) (sizeof(array) / (sizeof((array)[0])))
26 #endif
27
28 int mkdir_recursive(const char *path, mode_t mode, uid_t uid, gid_t gid);
29 const char *get_home_dir(void);
30
31 #endif /* _LTT_UTILS_H */
This page took 0.029771 seconds and 4 git commands to generate.