diff options
Diffstat (limited to 'threadproc/unix/proc.c')
-rw-r--r-- | threadproc/unix/proc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/threadproc/unix/proc.c b/threadproc/unix/proc.c index d4e1bf5d7..a611262b7 100644 --- a/threadproc/unix/proc.c +++ b/threadproc/unix/proc.c @@ -355,7 +355,7 @@ ap_status_t ap_create_process(struct proc_t **new, const char *progname, ap_close(attr->child_err); } - 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) { if (chdir(attr->currdir) == -1) { |