clar 2004/07/12 09:57:12
Modified: threadproc/netware proc.c
Log:
rev back to r1.29 , removing changes to addrspace and detach set functions
Revision Changes Path
1.31 +2 -2 apr/threadproc/netware/proc.c
Index: proc.c
===================================================================
RCS file: /home/cvs/apr/threadproc/netware/proc.c,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- proc.c 9 Jul 2004 20:29:05 -0000 1.30
+++ proc.c 12 Jul 2004 16:57:12 -0000 1.31
@@ -179,7 +179,7 @@
APR_DECLARE(apr_status_t) apr_procattr_detach_set(apr_procattr_t *attr,
apr_int32_t detach)
{
- attr->detached = (detach & 1);
+ attr->detached = detach;
return APR_SUCCESS;
}
@@ -268,7 +268,7 @@
APR_DECLARE(apr_status_t) apr_procattr_addrspace_set(apr_procattr_t *attr,
apr_int32_t addrspace)
{
- attr->addrspace = (addrspace & 2);
+ attr->addrspace = addrspace;
return APR_SUCCESS;
}