os/ossrv/genericopenlibs/openenvcore/include/sysexits.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
 * Copyright (c) 1987, 1993
sl@0
     3
 *	The Regents of the University of California.  All rights reserved.
sl@0
     4
 *
sl@0
     5
 * Redistribution and use in source and binary forms, with or without
sl@0
     6
 * modification, are permitted provided that the following conditions
sl@0
     7
 * are met:
sl@0
     8
 * 1. Redistributions of source code must retain the above copyright
sl@0
     9
 *    notice, this list of conditions and the following disclaimer.
sl@0
    10
 * 2. Redistributions in binary form must reproduce the above copyright
sl@0
    11
 *    notice, this list of conditions and the following disclaimer in the
sl@0
    12
 *    documentation and/or other materials provided with the distribution.
sl@0
    13
 * 4. Neither the name of the University nor the names of its contributors
sl@0
    14
 *    may be used to endorse or promote products derived from this software
sl@0
    15
 *    without specific prior written permission.
sl@0
    16
 *
sl@0
    17
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
sl@0
    18
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
sl@0
    19
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
sl@0
    20
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
sl@0
    21
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
sl@0
    22
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
sl@0
    23
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
sl@0
    24
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
sl@0
    25
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
sl@0
    26
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
sl@0
    27
 * SUCH DAMAGE.
sl@0
    28
 *
sl@0
    29
 *	@(#)sysexits.h	8.1 (Berkeley) 6/2/93
sl@0
    30
 */
sl@0
    31
sl@0
    32
#ifndef	_SYSEXITS_H_
sl@0
    33
#define	_SYSEXITS_H_
sl@0
    34
sl@0
    35
/*
sl@0
    36
 *  SYSEXITS.H -- Exit status codes for system programs.
sl@0
    37
 *
sl@0
    38
 *	This include file attempts to categorize possible error
sl@0
    39
 *	exit statuses for system programs, notably delivermail
sl@0
    40
 *	and the Berkeley network.
sl@0
    41
 *
sl@0
    42
 *	Error numbers begin at EX__BASE to reduce the possibility of
sl@0
    43
 *	clashing with other exit statuses that random programs may
sl@0
    44
 *	already return.  The meaning of the codes is approximately
sl@0
    45
 *	as follows:
sl@0
    46
 *
sl@0
    47
 *	EX_USAGE -- The command was used incorrectly, e.g., with
sl@0
    48
 *		the wrong number of arguments, a bad flag, a bad
sl@0
    49
 *		syntax in a parameter, or whatever.
sl@0
    50
 *	EX_DATAERR -- The input data was incorrect in some way.
sl@0
    51
 *		This should only be used for user's data & not
sl@0
    52
 *		system files.
sl@0
    53
 *	EX_NOINPUT -- An input file (not a system file) did not
sl@0
    54
 *		exist or was not readable.  This could also include
sl@0
    55
 *		errors like "No message" to a mailer (if it cared
sl@0
    56
 *		to catch it).
sl@0
    57
 *	EX_NOUSER -- The user specified did not exist.  This might
sl@0
    58
 *		be used for mail addresses or remote logins.
sl@0
    59
 *	EX_NOHOST -- The host specified did not exist.  This is used
sl@0
    60
 *		in mail addresses or network requests.
sl@0
    61
 *	EX_UNAVAILABLE -- A service is unavailable.  This can occur
sl@0
    62
 *		if a support program or file does not exist.  This
sl@0
    63
 *		can also be used as a catchall message when something
sl@0
    64
 *		you wanted to do doesn't work, but you don't know
sl@0
    65
 *		why.
sl@0
    66
 *	EX_SOFTWARE -- An internal software error has been detected.
sl@0
    67
 *		This should be limited to non-operating system related
sl@0
    68
 *		errors as possible.
sl@0
    69
 *	EX_OSERR -- An operating system error has been detected.
sl@0
    70
 *		This is intended to be used for such things as "cannot
sl@0
    71
 *		fork", "cannot create pipe", or the like.  It includes
sl@0
    72
 *		things like getuid returning a user that does not
sl@0
    73
 *		exist in the passwd file.
sl@0
    74
 *	EX_OSFILE -- Some system file (e.g., /etc/passwd, /etc/utmp,
sl@0
    75
 *		etc.) does not exist, cannot be opened, or has some
sl@0
    76
 *		sort of error (e.g., syntax error).
sl@0
    77
 *	EX_CANTCREAT -- A (user specified) output file cannot be
sl@0
    78
 *		created.
sl@0
    79
 *	EX_IOERR -- An error occurred while doing I/O on some file.
sl@0
    80
 *	EX_TEMPFAIL -- temporary failure, indicating something that
sl@0
    81
 *		is not really an error.  In sendmail, this means
sl@0
    82
 *		that a mailer (e.g.) could not create a connection,
sl@0
    83
 *		and the request should be reattempted later.
sl@0
    84
 *	EX_PROTOCOL -- the remote system returned something that
sl@0
    85
 *		was "not possible" during a protocol exchange.
sl@0
    86
 *	EX_NOPERM -- You did not have sufficient permission to
sl@0
    87
 *		perform the operation.  This is not intended for
sl@0
    88
 *		file system problems, which should use NOINPUT or
sl@0
    89
 *		CANTCREAT, but rather for higher level permissions.
sl@0
    90
 */
sl@0
    91
sl@0
    92
#define EX_OK		0	/* successful termination */
sl@0
    93
sl@0
    94
#define EX__BASE	64	/* base value for error messages */
sl@0
    95
sl@0
    96
#define EX_USAGE	64	/* command line usage error */
sl@0
    97
#define EX_DATAERR	65	/* data format error */
sl@0
    98
#define EX_NOINPUT	66	/* cannot open input */
sl@0
    99
#define EX_NOUSER	67	/* addressee unknown */
sl@0
   100
#define EX_NOHOST	68	/* host name unknown */
sl@0
   101
#define EX_UNAVAILABLE	69	/* service unavailable */
sl@0
   102
#define EX_SOFTWARE	70	/* internal software error */
sl@0
   103
#define EX_OSERR	71	/* system error (e.g., can't fork) */
sl@0
   104
#define EX_OSFILE	72	/* critical OS file missing */
sl@0
   105
#define EX_CANTCREAT	73	/* can't create (user) output file */
sl@0
   106
#define EX_IOERR	74	/* input/output error */
sl@0
   107
#define EX_TEMPFAIL	75	/* temp failure; user is invited to retry */
sl@0
   108
#define EX_PROTOCOL	76	/* remote error in protocol */
sl@0
   109
#define EX_NOPERM	77	/* permission denied */
sl@0
   110
#define EX_CONFIG	78	/* configuration error */
sl@0
   111
sl@0
   112
#define EX__MAX	78	/* maximum listed value */
sl@0
   113
sl@0
   114
#endif /* !_SYSEXITS_H_ */