summaryrefslogtreecommitdiff
path: root/threadproc/netware
diff options
context:
space:
mode:
authorbnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68>2003-03-10 23:40:57 +0000
committerbnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68>2003-03-10 23:40:57 +0000
commit05e42758a6f601af046906913498e6b44d3f6bf8 (patch)
tree77f78ca8dc56b04141ef64adc6816f5c6a0a0124 /threadproc/netware
parent949a479f18dc77ac37f52004fd14c7c90f38f6e1 (diff)
downloadlibapr-05e42758a6f601af046906913498e6b44d3f6bf8.tar.gz
Default spawned threads to detached so we avoid hanging on a waitpid() call
since NetWare doesn't yet have a way to kill a spawned NLM. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64418 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'threadproc/netware')
-rw-r--r--threadproc/netware/proc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/threadproc/netware/proc.c b/threadproc/netware/proc.c
index 7b0b05bae..35fb5fa05 100644
--- a/threadproc/netware/proc.c
+++ b/threadproc/netware/proc.c
@@ -84,7 +84,7 @@ APR_DECLARE(apr_status_t) apr_procattr_create(apr_procattr_t **new,apr_pool_t *p
(*new)->cmdtype = APR_PROGRAM;
/* Default to a current path since NetWare doesn't handle it very well */
apr_filepath_get(&((*new)->currdir), APR_FILEPATH_NATIVE, pool);
-/* (*new)->detached = 1;*/
+ (*new)->detached = 1;
return APR_SUCCESS;
}