summaryrefslogtreecommitdiff
path: root/threadproc/os2/proc.c
diff options
context:
space:
mode:
authorSascha Schumann <sascha@apache.org>1999-12-31 04:15:13 +0000
committerSascha Schumann <sascha@apache.org>1999-12-31 04:15:13 +0000
commit4637b207b487628be6da96837834db600604955a (patch)
treeeb92287f9192643b5e85c5d6285aa2151386e49e /threadproc/os2/proc.c
parent2803cb01470de16583d49e086c24fe93ad15d9f7 (diff)
downloadapr-4637b207b487628be6da96837834db600604955a.tar.gz
Use always ap_signal() in APR to avoid redefining the system call signal()
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@59564 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'threadproc/os2/proc.c')
-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));