home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 January / PCWorld_2000-01_cd.bin / Software / Servis / Devc / _SETUP.4 / Group3 / signal.h < prev    next >
C/C++ Source or Header  |  1998-12-24  |  3KB  |  104 lines

  1. /* 
  2.  * signal.h
  3.  *
  4.  * A way to set handlers for exceptional conditions (also known as signals).
  5.  *
  6.  * This file is part of the Mingw32 package.
  7.  *
  8.  * Contributors:
  9.  *  Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
  10.  *
  11.  *  THIS SOFTWARE IS NOT COPYRIGHTED
  12.  *
  13.  *  This source code is offered for use in the public domain. You may
  14.  *  use, modify or distribute it freely.
  15.  *
  16.  *  This code is distributed in the hope that it will be useful but
  17.  *  WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
  18.  *  DISCLAMED. This includes but is not limited to warranties of
  19.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  20.  *
  21.  * $Revision: 2.2 $
  22.  * $Author: colin $
  23.  * $Date: 1998/01/26 04:48:00 $
  24.  *
  25.  */
  26.  
  27. #ifndef    _SIGNAL_H_
  28. #define    _SIGNAL_H_
  29.  
  30. /*
  31.  * The actual signal values. Using other values with signal
  32.  * produces a SIG_ERR return value.
  33.  *
  34.  * NOTE: SIGINT is produced when the user presses Ctrl-C.
  35.  *       SIGILL has not been tested.
  36.  *       SIGFPE doesn't seem to work?
  37.  *       SIGSEGV does not catch writing to a NULL pointer (that shuts down
  38.  *               your app; can you say "segmentation violation core dump"?).
  39.  *       SIGTERM comes from what kind of termination request exactly?
  40.  *       SIGBREAK is indeed produced by pressing Ctrl-Break.
  41.  *       SIGABRT is produced by calling abort.
  42.  * TODO: The above results may be related to not installing an appropriate
  43.  *       structured exception handling frame. Results may be better if I ever
  44.  *       manage to get the SEH stuff down.
  45.  */
  46. #define    SIGINT        2    /* Interactive attention */
  47. #define    SIGILL        4    /* Illegal instruction */
  48. #define    SIGFPE        8    /* Floating point error */
  49. #define    SIGSEGV        11    /* Segmentation violation */
  50. #define    SIGTERM        15    /* Termination request */
  51. #define SIGBREAK    21    /* Control-break */
  52. #define    SIGABRT        22    /* Abnormal termination (abort) */
  53.  
  54. #define NSIG        23    /* Highest signal number + 1 */
  55.  
  56. /*
  57.  * The prototypes (below) are the easy part. The hard part is figuring
  58.  * out what signals are available and what numbers they are assigned
  59.  * along with appropriate values of SIG_DFL and SIG_IGN.
  60.  */
  61.  
  62. #ifndef    RC_INVOKED
  63.  
  64. /*
  65.  * A pointer to a signal handler function. A signal handler takes a
  66.  * single int, which is the signal it handles.
  67.  */
  68. typedef    void (*_p_sig_fn_t)(int nSig);
  69.  
  70. /*
  71.  * These are special values of signal handler pointers which are
  72.  * used to send a signal to the default handler (SIG_DFL), ignore
  73.  * the signal (SIG_IGN), or indicate an error return (SIG_ERR).
  74.  */
  75. #define    SIG_DFL    ((_p_sig_fn_t) 0)
  76. #define    SIG_IGN    ((_p_sig_fn_t) 1)
  77. #define    SIG_ERR ((_p_sig_fn_t) -1)
  78.  
  79. #ifdef    __cplusplus
  80. extern "C" {
  81. #endif
  82.  
  83. /*
  84.  * Call signal to set the signal handler for signal sig to the
  85.  * function pointed to by handler. Returns a pointer to the
  86.  * previous handler, or SIG_ERR if an error occurs. Initially
  87.  * unhandled signals defined above will return SIG_DFL.
  88.  */
  89. _p_sig_fn_t    signal(int sig, _p_sig_fn_t handler);
  90.  
  91. /*
  92.  * Raise the signal indicated by sig. Returns non-zero on success.
  93.  */
  94. int    raise (int sig);
  95.  
  96. #ifdef    __cplusplus
  97. }
  98. #endif
  99.  
  100. #endif    /* Not RC_INVOKED */
  101.  
  102. #endif    /* Not _SIGNAL_H_ */
  103.  
  104.