home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / C / Applications / Portable Patmos / usr / include / sysexits.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-08  |  5.4 KB  |  120 lines  |  [TEXT/R*ch]

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