home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume10 / pcmail2 / part01 / main / status.h < prev    next >
Text File  |  1990-01-24  |  2KB  |  58 lines

  1. /*++
  2. /* NAME
  3. /*    status 5
  4. /* SUMMARY
  5. /*    process termination status
  6. /* PROJECT
  7. /*    pc-mail
  8. /* PACKAGE
  9. /*    library
  10. /* SYNOPSIS
  11. /*    #include "status.h"
  12. /* DESCRIPTION
  13. /* .nf
  14.  
  15.  /* process termination status codes */
  16.  
  17. #define    E_SUCCESS    0        /* successfull completion */
  18.  
  19. #define    E_SYSFAIL    41        /* operating system failure */
  20. #define    E_NOPROG    42        /* program not found */
  21. #define    E_NOSPOOL    43        /* no spool directory */
  22. #define    E_READERR    44        /* data file read error */
  23. #define    E_WRITERR    45        /* data file write error */
  24. #define    E_CONFUSED    46        /* internal error */
  25. #define    E_UNKNOWN    47        /* unknown error */
  26. #define    E_FILENO    48        /* cannot open enough files */
  27. #define    E_BADSETUP    49        /* bad setup parameter */
  28. #define    E_UNLINK    50        /* cannot remove file */
  29. #define    E_PRINTERR    51        /* printer error */
  30. #define    E_NOUSER    52        /* unknown user */
  31. #define    E_OVALIAS    53        /* alias expansion overflow */
  32. #define    E_TOOLONG    54        /* list of recipients too long */
  33.  
  34.  /* cico specific codes */
  35.  
  36. #define    E_NOLINE    61        /* cannot reach host */
  37. #define    E_NORESP    62        /* no ititial response */
  38. #define    E_REJECT    63        /* rejected by host (unknown,... ) */
  39. #define    E_LOST        64        /* link lost (timeout,...) */
  40. /* SEE ALSO
  41. /*    status(3)    error message implementation
  42. /* BUGS
  43. /*    The usual error message problem: there is hardly any context
  44. /*    information. A read error is a read error, no info about the
  45. /*    state of processing when it ocurred.
  46. /* AUTHOR(S)
  47. /*    W.Z. Venema
  48. /*    Eindhoven University of Technology
  49. /*    Department of Mathematics and Computer Science
  50. /*    Den Dolech 2, P.O. Box 513, 5600 MB Eindhoven, The Netherlands
  51. /* CREATION DATE
  52. /*    Sat Apr 11 15:45:37 GMT+1:00 1987
  53. /* LAST MODIFICATION
  54. /*    90/01/22 13:02:42
  55. /* VERSION/RELEASE
  56. /*    2.1
  57. /*--*/
  58.