You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by bn...@apache.org on 2002/11/07 20:50:04 UTC

cvs commit: apr/threadproc/netware proc.c

bnicholes    2002/11/07 11:50:04

  Modified:    threadproc/netware proc.c
  Log:
  Switched from processve() to procve() API.
  
  Revision  Changes    Path
  1.15      +4 -4      apr/threadproc/netware/proc.c
  
  Index: proc.c
  ===================================================================
  RCS file: /home/cvs/apr/threadproc/netware/proc.c,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- proc.c	10 Jun 2002 16:20:52 -0000	1.14
  +++ proc.c	7 Nov 2002 19:50:04 -0000	1.15
  @@ -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 @@
       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;
       }