termecu.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /*+-------------------------------------------------------------------------
  2. termecu.h -- termecu (exit()) codes
  3. wht@wht.net
  4. 1 - 64 reserved for signals
  5. 193 - 223 reserved for procedure 'exit' codes
  6. --------------------------------------------------------------------------*/
  7. /*+:EDITS:*/
  8. /*:04-26-2000-11:16-wht@bob-RELEASE 4.42 */
  9. /*:01-24-1997-02:38-wht@yuriatin-SOURCE RELEASE 4.00 */
  10. /*:09-11-1996-20:01-wht@yuriatin-3.48-major telnet,curses,structural overhaul */
  11. /*:11-23-1995-11:20-wht@kepler-source control 3.37 for tsx-11 */
  12. /*:11-14-1995-10:23-wht@kepler-3.37.80-source control point: SOCKETS */
  13. /*:05-04-1994-04:40-wht@n4hgf-ECU release 3.30 */
  14. /*:12-20-1992-12:02-wht@n4hgf-add TERMECU_SVC_NOT_AVAIL */
  15. /*:09-16-1992-03:29-wht@n4hgf-add TERMECU_UNRECOVERABLE */
  16. /*:09-10-1992-14:00-wht@n4hgf-ECU release 3.20 */
  17. /*:08-22-1992-15:39-wht@n4hgf-ECU release 3.20 BETA */
  18. /*:03-27-1992-16:21-wht@n4hgf-re-include protection for all .h files */
  19. /*:07-25-1991-12:59-wht@n4hgf-ECU release 3.10 */
  20. /*:08-14-1990-20:40-wht@n4hgf-ecu3.00-flush old edit history */
  21. #ifndef _termecu_h
  22. #define _termecu_h
  23. #define TERMECU_OK 0
  24. #define TERMECU_SIG1 1
  25. #define TERMECU_SIGN 64
  26. #define TERMECU_LINE_READ_ERROR 129
  27. #define TERMECU_XMTR_WRITE_ERROR 130
  28. #define TERMECU_XMTR_FATAL_ERROR 131
  29. #define TERMECU_BSD4_IOCTL 132
  30. #define TERMECU_SHM_ABL 133
  31. #define TERMECU_SHM_RTL 134
  32. #define TERMECU_NO_FORK_FOR_RCVR 135
  33. #define TERMECU_TTYIN_READ_ERROR 136
  34. #define TERMECU_LINE_OPEN_ERROR 137
  35. #define TERMECU_PWENT_ERROR 138
  36. #define TERMECU_USAGE 139
  37. #define TERMECU_CONFIG_ERROR 140
  38. #define TERMECU_CURSES_ERROR 141
  39. #define TERMECU_RCVR_FATAL_ERROR 142
  40. #define TERMECU_MALLOC 143
  41. #define TERMECU_LOGIC_ERROR 144
  42. #define TERMECU_GEOMETRY 145
  43. #define TERMECU_IPC_ERROR 146
  44. #define TERMECU_UNRECOVERABLE 147
  45. #define TERMECU_SVC_NOT_AVAIL 148
  46. #define TERMECU_INIT_PROC_ERROR 192
  47. #define TERMECU_USER1 193
  48. #define TERMECU_USERN 223
  49. #endif /* _termecu_h */
  50. /* vi: set tabstop=4 shiftwidth=4: */
  51. /* end of termecu.h */