diff options
author | Jeff Trawick <trawick@apache.org> | 2000-04-05 02:09:44 +0000 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2000-04-05 02:09:44 +0000 |
commit | 98730c630f957d369f0422939153c13262495dff (patch) | |
tree | 57a831a3fb37227d7328f900a5082c49874ab137 /include | |
parent | b2a55b8a88a8cf690b3fcad4f1cc01bec269cfda (diff) | |
download | httpd-98730c630f957d369f0422939153c13262495dff.tar.gz |
stop relying on a macro to map signal() to ap_signal(); call
ap_signal() directly
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84916 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r-- | include/ap_config.h | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/include/ap_config.h b/include/ap_config.h index da2f6959f4..8a5c7fca29 100644 --- a/include/ap_config.h +++ b/include/ap_config.h @@ -1142,28 +1142,6 @@ int setrlimit(int, struct rlimit *); #define INADDR_NONE ((unsigned long) -1) #endif -#if 0 -/* This stuff taken care of in APR XXXXX */ -/* - * Replace signal function with sigaction equivalent - */ -#ifndef NO_USE_SIGACTION -typedef void Sigfunc(int); - -#if defined(SIG_IGN) && !defined(SIG_ERR) -#define SIG_ERR ((Sigfunc *)-1) -#endif - -/* - * For some strange reason, QNX defines signal to signal. Eliminate it. - */ -#ifdef signal -#undef signal -#endif -#define signal(s,f) ap_signal(s,f) -Sigfunc *signal(int signo, Sigfunc * func); -#endif -#endif #include <setjmp.h> #if defined(USE_LONGJMP) |