* Rename --fork to --max-forks.
This commit is contained in:
@@ -63,7 +63,7 @@ and do not want it to fuzz files in the \fB/etc\fR directory.
|
||||
Multiple \fB\-E\fR flags can be specified, in which case files matching any one
|
||||
of the regular expressions will be ignored.
|
||||
.TP
|
||||
\fB\-F\fR, \fB\-\-fork\fR=\fIchildren\fR
|
||||
\fB\-F\fR, \fB\-\-max-forks\fR=\fIchildren\fR
|
||||
Specify the number of simultaneous children that can be run. This option is
|
||||
only useful if the \fB\-s\fR flag is used with an interval argument.
|
||||
.TP
|
||||
|
||||
@@ -106,7 +106,7 @@ int main(int argc, char *argv[])
|
||||
{ "cmdline", 0, NULL, 'c' },
|
||||
{ "debug", 0, NULL, 'd' },
|
||||
{ "exclude", 1, NULL, 'E' },
|
||||
{ "fork", 1, NULL, 'F' },
|
||||
{ "max-forks", 1, NULL, 'F' },
|
||||
{ "help", 0, NULL, 'h' },
|
||||
{ "stdin", 0, NULL, 'i' },
|
||||
{ "include", 1, NULL, 'I' },
|
||||
@@ -164,7 +164,7 @@ int main(int argc, char *argv[])
|
||||
case 'r': /* --ratio */
|
||||
setenv("ZZUF_RATIO", optarg, 1);
|
||||
break;
|
||||
case 'F': /* --fork */
|
||||
case 'F': /* --max-forks */
|
||||
parallel = atoi(optarg) > 1 ? atoi(optarg) : 1;
|
||||
break;
|
||||
case 'B': /* --max-bytes */
|
||||
|
||||
Reference in New Issue
Block a user