summaryrefslogtreecommitdiff
path: root/acconfig.h
diff options
context:
space:
mode:
authorrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2000-03-02 20:36:45 +0000
committerrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2000-03-02 20:36:45 +0000
commit81df9b0f12304058990430b172dd2fb2fd683ee0 (patch)
treefd545601899242ae7ba108dbf741a1f94a9d57b2 /acconfig.h
parentad914893d1005ea51b5625eb90a83b7be8793c1d (diff)
downloadlibapr-81df9b0f12304058990430b172dd2fb2fd683ee0.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: http://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