home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 May / VPR9705A.ISO / VPR_DATA / PROGRAM / CBTRIAL / SETUP / DATA.Z / SIGNAL.H < prev    next >
C/C++ Source or Header  |  1997-02-14  |  2KB  |  85 lines

  1. /*  signal.h
  2.  
  3.     Definitions for ANSI defined signaling capability
  4.  
  5. */
  6.  
  7. /*
  8.  *      C/C++ Run Time Library - Version 8.0
  9.  *
  10.  *      Copyright (c) 1988, 1997 by Borland International
  11.  *      All Rights Reserved.
  12.  *
  13.  */
  14. /* $Revision:   8.1  $ */
  15.  
  16. #ifndef __SIGNAL_H
  17. #define __SIGNAL_H
  18.  
  19. #if !defined(___DEFS_H)
  20. #include <_defs.h>
  21. #endif
  22.  
  23.  
  24. #if !defined(RC_INVOKED)
  25.  
  26. #if defined(__STDC__)
  27. #pragma warn -nak
  28. #endif
  29.  
  30. #endif  /* !RC_INVOKED */
  31.  
  32.  
  33. typedef int sig_atomic_t;   /* Atomic entity type (ANSI) */
  34.  
  35. #ifdef __cplusplus
  36. typedef void _USERENTRY (_EXPFUNC * _CatcherPTR)(int);
  37. #else
  38. typedef void _USERENTRY (_EXPFUNC * _CatcherPTR)();
  39. #endif
  40.  
  41. #define SIG_DFL ((_CatcherPTR)0)   /* Default action   */
  42. #define SIG_IGN ((_CatcherPTR)1)   /* Ignore action    */
  43. #define SIG_ERR ((_CatcherPTR)-1)  /* Error return     */
  44.  
  45. #define SIGABRT         22
  46. #define SIGFPE           8              /* Floating point trap  */
  47. #define SIGILL           4              /* Illegal instruction  */
  48. #define SIGINT           2
  49. #define SIGSEGV         11              /* Memory access violation */
  50. #define SIGTERM         15
  51. #ifdef __FLAT__
  52. #define SIGUSR1         16              /* User-defined signal 1 */
  53. #define SIGUSR2         17              /* User-defined signal 2 */
  54. #define SIGUSR3         20              /* User-defined signal 3 */
  55. #define SIGBREAK        21              /* Control-Break interrupt */
  56. #endif  /* __FLAT__ */
  57.  
  58.  
  59. #ifdef __cplusplus
  60. extern "C" {
  61. #endif
  62. int _RTLENTRY _EXPFUNC raise(int __sig);
  63. #ifdef __cplusplus
  64. void (_USERENTRY * _RTLENTRY _EXPFUNC32 signal(int __sig, void (_USERENTRY * __func)(int))) (int);
  65. }
  66. #else
  67. void (_USERENTRY * _RTLENTRY _EXPFUNC32 signal(int __sig, void (_USERENTRY * __func)())) (int);
  68. #endif
  69.  
  70. #if !defined(__STDC__)
  71. #define NSIG   23      /* highest defined signal no. + 1 */
  72. #endif
  73.  
  74.  
  75. #if !defined(RC_INVOKED)
  76.  
  77. #if defined(__STDC__)
  78. #pragma warn .nak
  79. #endif
  80.  
  81. #endif  /* !RC_INVOKED */
  82.  
  83.  
  84. #endif  /* __SIGNAL_H */
  85.