The usage string: renice [priority | [-n incr]] ... assumed that the part

`priority | [-n incr]' was optionnal which is wrong according to the code.
Add FreeBSD Id.
Reviewed by:	maxim
This commit is contained in:
Philippe Charnier 2003-02-26 20:27:24 +00:00
parent 81d4b45da7
commit 622e8da61d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=111569
2 changed files with 13 additions and 7 deletions

View file

@ -40,7 +40,12 @@
.Nd alter priority of running processes
.Sh SYNOPSIS
.Nm
.Op Ar priority | Op Fl n Ar increment
.Ar priority
.Op Oo Fl p Oc Ar pid ...
.Op Oo Fl g Oc Ar pgrp ...
.Op Oo Fl u Oc Ar user ...
.Nm
.Fl n Ar increment
.Op Oo Fl p Oc Ar pid ...
.Op Oo Fl g Oc Ar pgrp ...
.Op Oo Fl u Oc Ar user ...

View file

@ -37,13 +37,14 @@ static const char copyright[] =
The Regents of the University of California. All rights reserved.\n";
#endif /* not lint */
#ifndef lint
#if 0
#ifndef lint
static char sccsid[] = "@(#)renice.c 8.1 (Berkeley) 6/9/93";
#endif
static const char rcsid[] =
"$FreeBSD$";
#endif /* not lint */
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/types.h>
#include <sys/time.h>
@ -179,7 +180,7 @@ static void
usage()
{
fprintf(stderr, "%s\n%s\n",
"usage: renice [priority | [-n incr]] [[-p] pid ...] [[-g] pgrp ...]",
" [[-u] user ...]");
"usage: renice priority [[-p] pid ...] [[-g] pgrp ...] [[-u] user ...]",
" renice -n increment [[-p] pid ...] [[-g] pgrp ...] [[-u] user ...]");
exit(1);
}