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

Comparing ray/src/rt/devcomm.c (file contents):
Revision 2.9 by greg, Thu Jul 3 15:00:19 2003 UTC vs.
Revision 2.11 by greg, Tue Nov 11 16:24:06 2003 UTC

# Line 9 | Line 9 | static const char      RCSid[] = "$Id$";
9  
10   #include "copyright.h"
11  
12 < #include  "platform.h"
12 > #include "platform.h"
13  
14   #include "standard.h"
15  
16 #include "color.h"
17
16   #include "driver.h"
17  
20 #include "vfork.h"
21
18   #ifndef DEVPATH
19   #define DEVPATH         getenv("PATH")  /* device search path */
20   #endif
# Line 84 | Line 80 | char   *dname, *id;
80                                                  /* open communication pipes */
81          if (pipe(p1) == -1 || pipe(p2) == -1)
82                  goto syserr;
83 <        if ((devchild = vfork()) == 0) {        /* fork driver process */
83 >        if ((devchild = fork()) == 0) { /* fork driver process */
84                  close(p1[1]);
85                  close(p2[0]);
86                  sprintf(pin, "%d", p1[0]);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines