summaryrefslogtreecommitdiff
path: root/acconfig.h
diff options
context:
space:
mode:
authorRyan Bloom <rbb@apache.org>2000-03-02 20:36:45 +0000
committerRyan Bloom <rbb@apache.org>2000-03-02 20:36:45 +0000
commitf879d93a206b2a85611bc8d4b0b915fcf2aeb843 (patch)
treefd545601899242ae7ba108dbf741a1f94a9d57b2 /acconfig.h
parentf5713e9021a038f97343da151075f6e376647bf9 (diff)
downloadapr-f879d93a206b2a85611bc8d4b0b915fcf2aeb843.tar.gz
Fix the logic for ap_signal, so it is exposed in external header files in APR.
Also change the header file included in http_log.c. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@59676 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'acconfig.h')
-rw-r--r--acconfig.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/acconfig.h b/acconfig.h
index 199692d5a..9c8e1fcff 100644
--- a/acconfig.h
+++ b/acconfig.h
@@ -53,22 +53,6 @@
/* Make sure we have ssize_t defined to be somethine */
#undef ssize_t
-/* We want this in config.h, because it is a macro that Windows requires. This
- * way, every thread start function has this definition, and things are happy.
- */
-#define API_THREAD_FUNC
-
-#ifdef HAVE_SIGACTION
-typedef void Sigfunc(int);
-Sigfunc *ap_signal(int signo, Sigfunc * func);
-
-#if defined(SIG_ING) && !defined(SIG_ERR)
-#define SIG_ERR ((Sigfunc *)-1)
-#endif
-#else
-#define ap_signal(a,b) signal(a,b)
-#endif
-
#if !defined(HAVE_PTHREAD_SIGMASK) && defined(_AIX)
#define pthread_sigmask sigprocmask
#endif