chiark / gitweb /
[PATCH] Creating nodes actually works.
[elogind.git] / udev.h
1 /*
2  * udev.h
3  *
4  * Userspace devfs
5  *
6  * Copyright (C) 2003 Greg Kroah-Hartman <greg@kroah.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
10  *      Free Software Foundation version 2 of the License.
11  * 
12  *      This program is distributed in the hope that it will be useful, but
13  *      WITHOUT ANY WARRANTY; without even the implied warranty of
14  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  *      General Public License for more details.
16  * 
17  *      You should have received a copy of the GNU General Public License along
18  *      with this program; if not, write to the Free Software Foundation, Inc.,
19  *      675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  */
22
23 #ifndef UDEV_H
24 #define UDEV_H
25
26
27 #ifdef DEBUG
28 #include <syslog.h>
29 #define dbg(format, arg...)                                                             \
30         do {                                                                            \
31                 log_message (LOG_DEBUG , "%s: " format , __FUNCTION__ , ## arg);        \
32         } while (0)
33 #else
34         #define dbg(format, arg...) do { } while (0)
35 #endif
36
37
38 /* Lots of constants that should be in a config file sometime */
39
40 /* Location of sysfs mount */
41 #define SYSFS_ROOT      "/sys"
42
43 /* Where udev should create its device nodes, trailing / needed */
44 #define UDEV_ROOT       "/home/greg/linux/udev/"
45
46 /* device file in sysfs that contains major/minor number, leading / needed */
47 #define DEV_FILE        "/dev"
48
49 /* Binaries that udev calls to do stuff */
50 #define MKNOD           "/bin/mknod"
51
52
53
54 extern int log_message (int level, const char *format, ...);
55
56
57 #endif
58