Changeset 4265 for zzuf/trunk/src
- Timestamp:
- Jan 13, 2010, 2:16:32 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
zzuf/trunk/src/zzuf.c
r4264 r4265 485 485 if(opts->maxcrashes && opts->crashes >= opts->maxcrashes 486 486 && opts->nchild == 0) 487 break; 487 { 488 if(opts->verbose) 489 fprintf(stderr, 490 "zzuf: maximum crash count reached, exiting\n"); 491 break; 492 } 488 493 489 494 if(opts->maxtime && _zz_time() - opts->starttime >= opts->maxtime 490 495 && opts->nchild == 0) 491 break; 496 { 497 if(opts->verbose) 498 fprintf(stderr, 499 "zzuf: maximum running time reached, exiting\n"); 500 break; 501 } 492 502 } 493 503
Note: See TracChangeset
for help on using the changeset viewer.