00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef APR_SIGNAL_H
00018 #define APR_SIGNAL_H
00019
00025 #include "apr.h"
00026 #include "apr_pools.h"
00027
00028 #if APR_HAVE_SIGNAL_H
00029 #include <signal.h>
00030 #endif
00031
00032 #ifdef __cplusplus
00033 extern "C" {
00034 #endif
00035
00042 #if APR_HAVE_SIGACTION || defined(DOXYGEN)
00043
00044 #if defined(DARWIN) && !defined(__cplusplus) && !defined(_ANSI_SOURCE)
00045
00046
00047
00048 #undef SIG_DFL
00049 #undef SIG_IGN
00050 #undef SIG_ERR
00051 #define SIG_DFL (void (*)(int))0
00052 #define SIG_IGN (void (*)(int))1
00053 #define SIG_ERR (void (*)(int))-1
00054 #endif
00055
00057 typedef void apr_sigfunc_t(int);
00058
00064 APR_DECLARE(apr_sigfunc_t *) apr_signal(int signo, apr_sigfunc_t * func);
00065
00066 #if defined(SIG_IGN) && !defined(SIG_ERR)
00067 #define SIG_ERR ((apr_sigfunc_t *) -1)
00068 #endif
00069
00070 #else
00071 #define apr_signal(a, b) signal(a, b)
00072 #endif
00073
00074
00080 APR_DECLARE(const char *) apr_signal_description_get(int signum);
00081
00083 APR_DECLARE(const char *) apr_signal_get_description(int signum);
00084
00090 void apr_signal_init(apr_pool_t *pglobal);
00091
00094 #ifdef __cplusplus
00095 }
00096 #endif
00097
00098 #endif