summaryrefslogtreecommitdiff
path: root/threadproc/beos
diff options
context:
space:
mode:
authorJean-Jacques Clar <clar@apache.org>2004-06-14 17:26:20 +0000
committerJean-Jacques Clar <clar@apache.org>2004-06-14 17:26:20 +0000
commit5b21ef2805c292d24b20df5e014bceaa109d70d1 (patch)
tree40233d14656db7dbc475114657e84e792cbe0402 /threadproc/beos
parent3998de92953e8e7866eb90c11a19fbba6a5de604 (diff)
downloadapr-5b21ef2805c292d24b20df5e014bceaa109d70d1.tar.gz
Added new APR API to load child process in current or new address space (NetWare ONLY).
Replaced changes that added APR_PROGRAM_ADDRSPACE committed 6/11/04. Reviewed by Brad Nicholes git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@65196 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'threadproc/beos')
-rw-r--r--threadproc/beos/proc.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/threadproc/beos/proc.c b/threadproc/beos/proc.c
index ff6ac1e0d..d3eb4cd7d 100644
--- a/threadproc/beos/proc.c
+++ b/threadproc/beos/proc.c
@@ -178,6 +178,13 @@ APR_DECLARE(apr_status_t) apr_procattr_error_check_set(apr_procattr_t *attr,
return APR_SUCCESS;
}
+APR_DECLARE(apr_status_t) apr_procattr_addrspace_set(apr_procattr_t *attr,
+ apr_int32_t addrspace)
+{
+ /* won't ever be used on this platform, so don't save the flag */
+ return APR_SUCCESS;
+}
+
APR_DECLARE(apr_status_t) apr_proc_create(apr_proc_t *new, const char *progname,
const char * const *args,
const char * const *env,