| 90 |
|
{ |
| 91 |
|
int i; |
| 92 |
|
|
| 93 |
– |
initurand(16384); /* initialize urand */ |
| 93 |
|
progname = argv[0]; /* get arguments */ |
| 94 |
|
for (i = 1; i < argc && argv[i][0] == '-'; i++) |
| 95 |
|
switch (argv[i][1]) { |
| 319 |
|
static int |
| 320 |
|
rholo(void) /* holodeck main loop */ |
| 321 |
|
{ |
| 322 |
< |
static long nextfragwarn = 100L<<20; |
| 322 |
> |
static off_t nextfragwarn = 100L<<20; |
| 323 |
|
static int idle = 0; |
| 324 |
|
PACKET *pl = NULL, *plend; |
| 325 |
|
off_t fsiz; |
| 338 |
|
return(0); /* all done */ |
| 339 |
|
fsiz = hdfilen(hdlist[0]->fd); /* check file size */ |
| 340 |
|
if (maxdisk > 0 && fsiz >= maxdisk) { |
| 341 |
< |
error(WARNING, "file limit exceeded"); |
| 341 |
> |
error(USER, "file limit exceeded"); |
| 342 |
|
done_rtrace(); |
| 343 |
|
return(1); /* comes back */ |
| 344 |
|
} |
| 356 |
|
#endif |
| 357 |
|
t = time(NULL); /* check time */ |
| 358 |
|
if (endtime > 0 && t >= endtime) { |
| 359 |
< |
error(WARNING, "time limit exceeded"); |
| 359 |
> |
error(USER, "time limit exceeded"); |
| 360 |
|
done_rtrace(); |
| 361 |
|
return(1); /* comes back */ |
| 362 |
|
} |