1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/genericopenlibs/openenvcore/include/sysexits.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,114 @@
1.4 +/*
1.5 + * Copyright (c) 1987, 1993
1.6 + * The Regents of the University of California. All rights reserved.
1.7 + *
1.8 + * Redistribution and use in source and binary forms, with or without
1.9 + * modification, are permitted provided that the following conditions
1.10 + * are met:
1.11 + * 1. Redistributions of source code must retain the above copyright
1.12 + * notice, this list of conditions and the following disclaimer.
1.13 + * 2. Redistributions in binary form must reproduce the above copyright
1.14 + * notice, this list of conditions and the following disclaimer in the
1.15 + * documentation and/or other materials provided with the distribution.
1.16 + * 4. Neither the name of the University nor the names of its contributors
1.17 + * may be used to endorse or promote products derived from this software
1.18 + * without specific prior written permission.
1.19 + *
1.20 + * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1.21 + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1.22 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1.23 + * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
1.24 + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1.25 + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1.26 + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1.27 + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1.28 + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1.29 + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1.30 + * SUCH DAMAGE.
1.31 + *
1.32 + * @(#)sysexits.h 8.1 (Berkeley) 6/2/93
1.33 + */
1.34 +
1.35 +#ifndef _SYSEXITS_H_
1.36 +#define _SYSEXITS_H_
1.37 +
1.38 +/*
1.39 + * SYSEXITS.H -- Exit status codes for system programs.
1.40 + *
1.41 + * This include file attempts to categorize possible error
1.42 + * exit statuses for system programs, notably delivermail
1.43 + * and the Berkeley network.
1.44 + *
1.45 + * Error numbers begin at EX__BASE to reduce the possibility of
1.46 + * clashing with other exit statuses that random programs may
1.47 + * already return. The meaning of the codes is approximately
1.48 + * as follows:
1.49 + *
1.50 + * EX_USAGE -- The command was used incorrectly, e.g., with
1.51 + * the wrong number of arguments, a bad flag, a bad
1.52 + * syntax in a parameter, or whatever.
1.53 + * EX_DATAERR -- The input data was incorrect in some way.
1.54 + * This should only be used for user's data & not
1.55 + * system files.
1.56 + * EX_NOINPUT -- An input file (not a system file) did not
1.57 + * exist or was not readable. This could also include
1.58 + * errors like "No message" to a mailer (if it cared
1.59 + * to catch it).
1.60 + * EX_NOUSER -- The user specified did not exist. This might
1.61 + * be used for mail addresses or remote logins.
1.62 + * EX_NOHOST -- The host specified did not exist. This is used
1.63 + * in mail addresses or network requests.
1.64 + * EX_UNAVAILABLE -- A service is unavailable. This can occur
1.65 + * if a support program or file does not exist. This
1.66 + * can also be used as a catchall message when something
1.67 + * you wanted to do doesn't work, but you don't know
1.68 + * why.
1.69 + * EX_SOFTWARE -- An internal software error has been detected.
1.70 + * This should be limited to non-operating system related
1.71 + * errors as possible.
1.72 + * EX_OSERR -- An operating system error has been detected.
1.73 + * This is intended to be used for such things as "cannot
1.74 + * fork", "cannot create pipe", or the like. It includes
1.75 + * things like getuid returning a user that does not
1.76 + * exist in the passwd file.
1.77 + * EX_OSFILE -- Some system file (e.g., /etc/passwd, /etc/utmp,
1.78 + * etc.) does not exist, cannot be opened, or has some
1.79 + * sort of error (e.g., syntax error).
1.80 + * EX_CANTCREAT -- A (user specified) output file cannot be
1.81 + * created.
1.82 + * EX_IOERR -- An error occurred while doing I/O on some file.
1.83 + * EX_TEMPFAIL -- temporary failure, indicating something that
1.84 + * is not really an error. In sendmail, this means
1.85 + * that a mailer (e.g.) could not create a connection,
1.86 + * and the request should be reattempted later.
1.87 + * EX_PROTOCOL -- the remote system returned something that
1.88 + * was "not possible" during a protocol exchange.
1.89 + * EX_NOPERM -- You did not have sufficient permission to
1.90 + * perform the operation. This is not intended for
1.91 + * file system problems, which should use NOINPUT or
1.92 + * CANTCREAT, but rather for higher level permissions.
1.93 + */
1.94 +
1.95 +#define EX_OK 0 /* successful termination */
1.96 +
1.97 +#define EX__BASE 64 /* base value for error messages */
1.98 +
1.99 +#define EX_USAGE 64 /* command line usage error */
1.100 +#define EX_DATAERR 65 /* data format error */
1.101 +#define EX_NOINPUT 66 /* cannot open input */
1.102 +#define EX_NOUSER 67 /* addressee unknown */
1.103 +#define EX_NOHOST 68 /* host name unknown */
1.104 +#define EX_UNAVAILABLE 69 /* service unavailable */
1.105 +#define EX_SOFTWARE 70 /* internal software error */
1.106 +#define EX_OSERR 71 /* system error (e.g., can't fork) */
1.107 +#define EX_OSFILE 72 /* critical OS file missing */
1.108 +#define EX_CANTCREAT 73 /* can't create (user) output file */
1.109 +#define EX_IOERR 74 /* input/output error */
1.110 +#define EX_TEMPFAIL 75 /* temp failure; user is invited to retry */
1.111 +#define EX_PROTOCOL 76 /* remote error in protocol */
1.112 +#define EX_NOPERM 77 /* permission denied */
1.113 +#define EX_CONFIG 78 /* configuration error */
1.114 +
1.115 +#define EX__MAX 78 /* maximum listed value */
1.116 +
1.117 +#endif /* !_SYSEXITS_H_ */