Magellan Linux

Contents of /trunk/mkinitrd-magellan/klibc/usr/include/sysexits.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 532 - (show annotations) (download)
Sat Sep 1 22:45:15 2007 UTC (16 years, 8 months ago) by niro
File MIME type: text/plain
File size: 987 byte(s)
-import if magellan mkinitrd; it is a fork of redhats mkinitrd-5.0.8 with all magellan patches and features; deprecates magellan-src/mkinitrd

1 #ifndef _SYSEXITS_H
2 #define _SYSEXITS_H
3
4 #define EX_OK 0 /* successful termination */
5
6 #define EX__BASE 64 /* base value for error messages */
7
8 #define EX_USAGE 64 /* command line usage error */
9 #define EX_DATAERR 65 /* data format error */
10 #define EX_NOINPUT 66 /* cannot open input */
11 #define EX_NOUSER 67 /* addressee unknown */
12 #define EX_NOHOST 68 /* host name unknown */
13 #define EX_UNAVAILABLE 69 /* service unavailable */
14 #define EX_SOFTWARE 70 /* internal software error */
15 #define EX_OSERR 71 /* system error (e.g., can't fork) */
16 #define EX_OSFILE 72 /* critical OS file missing */
17 #define EX_CANTCREAT 73 /* can't create (user) output file */
18 #define EX_IOERR 74 /* input/output error */
19 #define EX_TEMPFAIL 75 /* temp failure; user is invited to retry */
20 #define EX_PROTOCOL 76 /* remote error in protocol */
21 #define EX_NOPERM 77 /* permission denied */
22 #define EX_CONFIG 78 /* configuration error */
23
24 #define EX__MAX 78 /* maximum listed value */
25
26 #endif /* _SYSEXITS_H */