* Rename --fork to --max-forks.

This commit is contained in:
Sam Hocevar
2007-01-05 23:14:37 +00:00
committed by sam
parent 00d3e5e154
commit a7b655736a
2 changed files with 3 additions and 3 deletions

View File

@@ -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

View File

@@ -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 */