summaryrefslogtreecommitdiff
path: root/threadproc/os2
diff options
context:
space:
mode:
authorsascha <sascha@13f79535-47bb-0310-9956-ffa450edef68>1999-12-31 04:15:13 +0000
committersascha <sascha@13f79535-47bb-0310-9956-ffa450edef68>1999-12-31 04:15:13 +0000
commitd773fa82f6cb1e4cc69441aba067fec5fd30507f (patch)
treeeb92287f9192643b5e85c5d6285aa2151386e49e /threadproc/os2
parent25635187d2eb91960be725bed12c544fff886965 (diff)
downloadlibapr-d773fa82f6cb1e4cc69441aba067fec5fd30507f.tar.gz
Use always ap_signal() in APR to avoid redefining the system call signal()
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@59564 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'threadproc/os2')
-rw-r--r--threadproc/os2/proc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/threadproc/os2/proc.c b/threadproc/os2/proc.c
index b6f3cd3e7..31789b61a 100644
--- a/threadproc/os2/proc.c
+++ b/threadproc/os2/proc.c
@@ -247,7 +247,7 @@ ap_status_t ap_create_process(struct proc_t **new, const char *progname,
DosSetFHState(attr->parent_err->filedes, OPEN_FLAGS_NOINHERIT);
}
- signal(SIGCHLD, SIG_DFL); /*not sure if this is needed or not */
+ ap_signal(SIGCHLD, SIG_DFL); /*not sure if this is needed or not */
if (attr->currdir != NULL) {
_getcwd2(savedir, sizeof(savedir));