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

Comparing ray/src/rt/rpmain.c (file contents):
Revision 2.9 by greg, Tue Jan 18 00:33:16 2005 UTC vs.
Revision 2.13 by greg, Thu Sep 13 20:02:11 2007 UTC

# Line 7 | Line 7 | static const char      RCSid[] = "$Id$";
7  
8   #include "copyright.h"
9  
10 < #include  <sys/types.h>
10 > #include  <time.h>
11   #include  <signal.h>
12  
13   #include  "platform.h"
# Line 226 | Line 226 | main(int  argc, char  *argv[])
226                                          /* initialize object types */
227          initotypes();
228                                          /* initialize urand */
229 <        initurand(2048);
229 >        if (rand_samp) {
230 >                srandom((long)time(0));
231 >                initurand(0);
232 >        } else {
233 >                srandom(0L);
234 >                initurand(2048);
235 >        }
236                                          /* set up signal handling */
237          sigdie(SIGINT, "Interrupt");
238   #ifdef SIGHUP
# Line 311 | Line 317 | main(int  argc, char  *argv[])
317                                  pflock(1);
318                                  pfhold();
319                                  tstart = time((time_t *)NULL);
320 +                                ambsync();              /* load new values */
321                          }
322                          if (rval < 0)
323                                  error(SYSTEM, "cannot fork child for persist function");
324 <                        pfdetach();             /* parent exits */
324 >                        pfdetach();             /* parent will run then exit */
325                  }
326          }
327   runagain:

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines