1: /*
2: * Possible exit codes of the autoconfiguration program
3: */
4: #define AC_OK 0 /* Everything A-OK for system go */
5: #define AC_SETUP 1 /* Error in initializing autoconfig program */
6: #define AC_SINGLE 2 /* Non-serious error; come up single user */
7:
8: /*
9: * Magic number to verify that autoconfig runs only once
10: */
11: #define CONF_MAGIC 0x1960
12:
13: /*
14: * Return values for probes
15: */
16: #define ACP_NXDEV -1
17: #define ACP_IFINTR 0
18: #define ACP_EXISTS 1
19:
20: /*
21: * Return values from interrupt routines
22: */
23: #define ACI_BADINTR -1
24: #define ACI_NOINTR 0
25: #define ACI_GOODINTR 1
Defined macros
ACP_IFINTR
defined in line
17; used 16 times
- in /usr/src/sys/autoconfig/uprobe1.c line
92,
101,
110,
119,
128,
138,
147,
163
- in /usr/src/sys/autoconfig/uprobe2.c line
50,
64,
82,
91,
103,
112,
132,
151
AC_OK
defined in line
4; used 1 times
Usage of this include