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

Comparing ray/src/hd/rholo.c (file contents):
Revision 3.54 by greg, Thu May 29 16:26:22 2003 UTC vs.
Revision 3.59 by schorsch, Mon Jun 30 14:59:12 2003 UTC

# Line 5 | Line 5 | static const char      RCSid[] = "$Id$";
5   * Radiance holodeck generation controller
6   */
7  
8 #include "rholo.h"
9 #include "random.h"
8   #include <signal.h>
9   #include <sys/stat.h>
10 + #include <string.h>
11  
12 + #include "rholo.h"
13 + #include "random.h"
14 +
15   #ifndef FRAGWARN
16   #define FRAGWARN        20              /* fragmentation for warning (%) */
17   #endif
# Line 152 | Line 154 | userr:
154   }
155  
156  
157 + void
158   onsig(signo)                            /* fatal signal */
159   int  signo;
160   {
# Line 214 | Line 217 | initrholo()                    /* get our holodeck running */
217                  init_global();
218                                                  /* record disk space limit */
219          if (!vdef(DISKSPACE))
220 <                maxdisk = (1L<<(sizeof(off_t)*8-2)) - 1024;
220 >                maxdisk = ((off_t)1<<(sizeof(off_t)*8-2)) - 1024;
221          else
222                  maxdisk = 1024.*1024.*vflt(DISKSPACE);
223                                                  /* set up memory cache */
# Line 412 | Line 415 | creatholo(gp)                  /* create a holodeck output file */
415   HDGRID  *gp;
416   {
417          extern char     VersionID[];
418 <        int4    lastloc, nextloc;
418 >        int32   lastloc, nextloc;
419          int     n;
420          int     fd;
421          FILE    *fp;
# Line 430 | Line 433 | HDGRID *gp;
433          putw(HOLOMAGIC, fp);            /* put magic number */
434          fd = dup(fileno(fp));
435          fclose(fp);                     /* flush and close stdio stream */
436 <        lastloc = lseek(fd, (off_t)0L, 2);
436 >        lastloc = lseek(fd, (off_t)0, 2);
437          for (n = vdef(SECTION); n--; gp++) {    /* initialize each section */
438                  nextloc = 0L;
439                  write(fd, (char *)&nextloc, sizeof(nextloc));
# Line 478 | Line 481 | loadholo()                     /* start loading a holodeck from fname */
481          FILE    *fp;
482          int     fd;
483          int     n;
484 <        int4    nextloc;
484 >        int32   nextloc;
485          
486          if (ncprocs > 0 & force >= 0)
487                  fp = fopen(hdkfile, "r+");
# Line 530 | Line 533 | PACKET *pl;
533          while (pl != NULL) {
534                  p = pl; pl = p->next; p->next = NULL;
535                  if (p->nr > 0) {                /* add to holodeck */
536 <                        bcopy((void *)p->ra,
537 <                                (void *)hdnewrays(hdlist[p->hd],p->bi,p->nr),
536 >                        memcpy( (void *)hdnewrays(hdlist[p->hd],p->bi,p->nr),
537 >                                (void *)p->ra,
538                                  p->nr*sizeof(RAYVAL));
539                          if (outdev != NULL)     /* display it */
540                                  disp_packet((PACKHEAD *)p);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines