home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume3 / pcmail / part07 / status.h < prev    next >
Text File  |  1989-02-03  |  2KB  |  57 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.  
  33. /* /* cico specific codes */
  34.  
  35. #define    E_NOLINE    61    /* cannot reach host */
  36. #define    E_NORESP    62    /* no ititial response */
  37. #define    E_REJECT    63    /* rejected by host (unknown,... ) */
  38. #define    E_LOST        64    /* link lost (timeout,...) */
  39. /* SEE ALSO
  40. /*    status(3)    error message implementation
  41. /* BUGS
  42. /*    The usual error message problem: there is hardly any context
  43. /*    information. A read error is a read error, no info about the
  44. /*    state of processing when it ocurred.
  45. /* AUTHOR(S)
  46. /*    W.Z. Venema
  47. /*    Eindhoven University of Technology
  48. /*    Department of Mathematics and Computer Science
  49. /*    Den Dolech 2, P.O. Box 513, 5600 MB Eindhoven, The Netherlands
  50. /* CREATION DATE
  51. /*    Sat Apr 11 15:45:37 GMT+1:00 1987
  52. /* LAST MODIFICATION
  53. /*    Mon Apr  4 23:50:40 MET 1988
  54. /* VERSION/RELEASE
  55. /*    1.3
  56. /*--*/
  57.