ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/unix_process.c
(Generate patch)

Comparing ray/src/common/unix_process.c (file contents):
Revision 3.3 by greg, Mon Nov 10 16:41:52 2003 UTC vs.
Revision 3.4 by greg, Tue Nov 11 16:24:06 2003 UTC

# Line 33 | Line 33 | char   *av[]
33                  return(0);
34          if (pipe(p0) < 0 || pipe(p1) < 0)
35                  return(-1);
36 <        if ((pd->pid = vfork()) == 0) {         /* if child */
36 >        if ((pd->pid = fork()) == 0) {          /* if child */
37                  close(p0[1]);
38                  close(p1[0]);
39                  if (p0[0] != 0) {       /* connect p0 to stdin */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines