chiark / gitweb /
[PATCH] removed unneeded stuff from udev.h
[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 /* Where udev should create its device nodes, trailing / needed */
41 #define UDEV_ROOT       "/udev/"
42
43 /* Binaries that udev calls to do stuff */
44 #define MKNOD           "/bin/mknod"
45
46 extern int log_message (int level, const char *format, ...)
47         __attribute__ ((format (printf, 2, 3)));
48
49 #define NAME_SIZE       100
50 #define OWNER_SIZE      30
51 #define GROUP_SIZE      30
52
53 struct device_attr {
54         char name[NAME_SIZE];
55         char owner[OWNER_SIZE];
56         char group[GROUP_SIZE];
57         int mode;
58 };
59
60 extern int udev_add_device(char *device, char *subsystem);
61 extern int udev_remove_device(char *device, char *subsystem);
62
63 #endif
64