You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by dr...@locus.apache.org on 2000/10/23 23:26:57 UTC

cvs commit: apache-2.0/src/lib/apr/threadproc/unix procsup.c

dreid       00/10/23 14:26:56

  Modified:    src/lib/apr/threadproc/unix procsup.c
  Log:
  BONE allows fork() so we might as well make use of it!
  
  Revision  Changes    Path
  1.24      +1 -1      apache-2.0/src/lib/apr/threadproc/unix/procsup.c
  
  Index: procsup.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/threadproc/unix/procsup.c,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -u -r1.23 -r1.24
  --- procsup.c	2000/08/02 05:26:41	1.23
  +++ procsup.c	2000/10/23 21:26:56	1.24
  @@ -60,7 +60,7 @@
       pid_t pgrp;
   
       chdir("/");
  -#if !defined(MPE) && !defined(OS2) && !defined(TPF) && !defined(BEOS)
  +#if !defined(MPE) && !defined(OS2) && !defined(TPF) && !defined(BEOS_R5)
   /* Don't detach for MPE because child processes can't survive the death of
      the parent. */
       if ((x = fork()) > 0)