summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authordreid <dreid@13f79535-47bb-0310-9956-ffa450edef68>2001-02-25 14:46:21 +0000
committerdreid <dreid@13f79535-47bb-0310-9956-ffa450edef68>2001-02-25 14:46:21 +0000
commit2a0cdab3ca5455840785595580673b5fdc2be9b2 (patch)
tree65cb3db18dc80df55c4e5c43131175430a473dec /include
parent63a188ea9918fd82baca113b6f23e5ae14001de0 (diff)
downloadlibapr-2a0cdab3ca5455840785595580673b5fdc2be9b2.tar.gz
APR_HAVE_SIGWAIT is now always defined, so the previous test failed on BeOS,
so now we check the value and it passes the test. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61299 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r--include/apr_thread_proc.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/apr_thread_proc.h b/include/apr_thread_proc.h
index 9ac29fb93..5e37b4892 100644
--- a/include/apr_thread_proc.h
+++ b/include/apr_thread_proc.h
@@ -588,7 +588,8 @@ APR_DECLARE(apr_status_t) apr_proc_kill(apr_proc_t *proc, int sig);
APR_DECLARE(void) apr_pool_note_subprocess(apr_pool_t *a, apr_proc_t *pid,
enum kill_conditions how);
-#if APR_HAS_THREADS && !defined(OS2) && defined(APR_HAVE_SIGWAIT)
+#if APR_HAS_THREADS && !defined(OS2) && APR_HAVE_SIGWAIT
+
/**
* Setup the process for a single thread to be used for all signal handling.
* @warn This must be called before any threads are created