| 45 |
|
time_t endtime; /* time we should end by */ |
| 46 |
|
time_t reporttime; /* time for next report */ |
| 47 |
|
|
| 48 |
< |
long maxdisk; /* maximum file space (bytes) */ |
| 48 |
> |
off_t maxdisk; /* maximum file space (bytes) */ |
| 49 |
|
|
| 50 |
|
int rtargc = 1; /* rtrace command */ |
| 51 |
|
char *rtargv[128] = {"rtrace", NULL}; |
| 152 |
|
} |
| 153 |
|
|
| 154 |
|
|
| 155 |
+ |
void |
| 156 |
|
onsig(signo) /* fatal signal */ |
| 157 |
|
int signo; |
| 158 |
|
{ |
| 215 |
|
init_global(); |
| 216 |
|
/* record disk space limit */ |
| 217 |
|
if (!vdef(DISKSPACE)) |
| 218 |
< |
maxdisk = (1L<<(sizeof(long)*8-2)) - 1024; |
| 218 |
> |
maxdisk = (1L<<(sizeof(off_t)*8-2)) - 1024; |
| 219 |
|
else |
| 220 |
|
maxdisk = 1024.*1024.*vflt(DISKSPACE); |
| 221 |
|
/* set up memory cache */ |
| 288 |
|
static long nextfragwarn = 100*(1L<<20); |
| 289 |
|
static int idle = 0; |
| 290 |
|
PACKET *pl = NULL, *plend; |
| 291 |
< |
long fsiz; |
| 291 |
> |
off_t fsiz; |
| 292 |
|
int pksiz; |
| 293 |
|
register PACKET *p; |
| 294 |
|
time_t t; |
| 413 |
|
HDGRID *gp; |
| 414 |
|
{ |
| 415 |
|
extern char VersionID[]; |
| 416 |
< |
int4 lastloc, nextloc; |
| 416 |
> |
int32 lastloc, nextloc; |
| 417 |
|
int n; |
| 418 |
|
int fd; |
| 419 |
|
FILE *fp; |
| 431 |
|
putw(HOLOMAGIC, fp); /* put magic number */ |
| 432 |
|
fd = dup(fileno(fp)); |
| 433 |
|
fclose(fp); /* flush and close stdio stream */ |
| 434 |
< |
lastloc = lseek(fd, (off_t)0L, 2); |
| 434 |
> |
lastloc = lseek(fd, (off_t)0, 2); |
| 435 |
|
for (n = vdef(SECTION); n--; gp++) { /* initialize each section */ |
| 436 |
|
nextloc = 0L; |
| 437 |
|
write(fd, (char *)&nextloc, sizeof(nextloc)); |
| 476 |
|
|
| 477 |
|
loadholo() /* start loading a holodeck from fname */ |
| 478 |
|
{ |
| 478 |
– |
extern long ftell(); |
| 479 |
|
FILE *fp; |
| 480 |
|
int fd; |
| 481 |
|
int n; |
| 482 |
< |
int4 nextloc; |
| 482 |
> |
int32 nextloc; |
| 483 |
|
|
| 484 |
|
if (ncprocs > 0 & force >= 0) |
| 485 |
|
fp = fopen(hdkfile, "r+"); |
| 608 |
|
if (nprocs > 0) |
| 609 |
|
status = done_rtrace(); /* calls hdsync() */ |
| 610 |
|
if (ncprocs > 0 & force >= 0 && vdef(REPORT)) { |
| 611 |
< |
long fsiz, fuse; |
| 611 |
> |
off_t fsiz, fuse; |
| 612 |
|
fsiz = hdfilen(hdlist[0]->fd); |
| 613 |
|
fuse = hdfiluse(hdlist[0]->fd, 1); |
| 614 |
|
fprintf(stderr, |