Changeset 3001 for zzuf/trunk/src/zzuf.c
- Timestamp:
- Oct 19, 2008, 12:01:43 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
zzuf/trunk/src/zzuf.c
r2818 r3001 212 212 { "signal", 0, NULL, 'S' }, 213 213 { "max-time", 1, NULL, 't' }, 214 { "max-cpu ",1, NULL, 'T' },214 { "max-cputime", 1, NULL, 'T' }, 215 215 { "verbose", 0, NULL, 'v' }, 216 216 { "check-exit", 0, NULL, 'x' }, … … 350 350 break; 351 351 #if defined HAVE_SETRLIMIT && defined ZZUF_RLIMIT_CPU 352 case 'T': /* --max-cpu */352 case 'T': /* --max-cputime */ 353 353 if(myoptarg[0] == '=') 354 354 myoptarg++; … … 1253 1253 printf(" -S, --signal prevent children from diverting crashing signals\n"); 1254 1254 printf(" -t, --max-time <n> kill children that run for more than <n> seconds\n"); 1255 printf(" -T, --max-cpu <n>kill children that use more than <n> CPU seconds\n");1255 printf(" -T, --max-cputime <n> kill children that use more than <n> CPU seconds\n"); 1256 1256 printf(" -v, --verbose print information during the run\n"); 1257 1257 printf(" -x, --check-exit report processes that exit with a non-zero status\n");
Note: See TracChangeset
for help on using the changeset viewer.