- Timestamp:
- Jan 6, 2007, 12:14:37 AM (14 years ago)
- Location:
- zzuf/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
zzuf/trunk/doc/zzuf.1
r1570 r1571 64 64 of the regular expressions will be ignored. 65 65 .TP 66 \fB\-F\fR, \fB\-\- fork\fR=\fIchildren\fR66 \fB\-F\fR, \fB\-\-max-forks\fR=\fIchildren\fR 67 67 Specify the number of simultaneous children that can be run. This option is 68 68 only useful if the \fB\-s\fR flag is used with an interval argument. -
zzuf/trunk/src/zzuf.c
r1562 r1571 107 107 { "debug", 0, NULL, 'd' }, 108 108 { "exclude", 1, NULL, 'E' }, 109 { " fork",1, NULL, 'F' },109 { "max-forks", 1, NULL, 'F' }, 110 110 { "help", 0, NULL, 'h' }, 111 111 { "stdin", 0, NULL, 'i' }, … … 165 165 setenv("ZZUF_RATIO", optarg, 1); 166 166 break; 167 case 'F': /* -- fork*/167 case 'F': /* --max-forks */ 168 168 parallel = atoi(optarg) > 1 ? atoi(optarg) : 1; 169 169 break;
Note: See TracChangeset
for help on using the changeset viewer.