summaryrefslogtreecommitdiff
path: root/threadproc/netware
diff options
context:
space:
mode:
authorBradley Nicholes <bnicholes@apache.org>2002-11-07 19:50:04 +0000
committerBradley Nicholes <bnicholes@apache.org>2002-11-07 19:50:04 +0000
commit684e9ecb6c66845725d9d9e33cdb03ef6574a5ab (patch)
tree5944f0d16fda1f83f62af41c6906c443bd30e57a /threadproc/netware
parentef819378fed1bcbd55874eb572313dbbf701c6fd (diff)
downloadapr-684e9ecb6c66845725d9d9e33cdb03ef6574a5ab.tar.gz
Switched from processve() to procve() API.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@64003 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'threadproc/netware')
-rw-r--r--threadproc/netware/proc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/threadproc/netware/proc.c b/threadproc/netware/proc.c
index dd5dd953f..60ad76935 100644
--- a/threadproc/netware/proc.c
+++ b/threadproc/netware/proc.c
@@ -57,7 +57,7 @@
#include "apr_strings.h"
#include "apr_portable.h"
-#include <nks/vm.h>
+#include <proc.h>
apr_status_t apr_netware_proc_cleanup(void *theproc)
{
@@ -304,10 +304,10 @@ APR_DECLARE(apr_status_t) apr_proc_create(apr_proc_t *newproc,
newproc->out = attr->parent_out;
newproc->err = attr->parent_err;
- addr_space = attr->detached ? 0 : PROC_CURRENT_SPACE;
+ addr_space = (attr->detached ? 0 : PROC_CURRENT_SPACE) | PROC_LOAD_SILENT;
- if ((newproc->pid = processve(progname, addr_space, (const char**)env, &wire,
- NULL, NULL, (const char **)args)) == 0) {
+ if ((newproc->pid = procve(progname, addr_space, (const char**)env, &wire,
+ NULL, NULL, 0, NULL, (const char **)args)) == 0) {
return errno;
}