indicate more clearly that [Tfstv] options are mutually exclusive;

fixes PR misc/2655.
This commit is contained in:
mikel 1997-06-05 06:14:16 +00:00
parent d19ef97a43
commit 5f77ad2313
2 changed files with 9 additions and 5 deletions

View File

@ -1,4 +1,4 @@
.\" $NetBSD: pstat.8,v 1.14 1997/05/28 22:03:34 pk Exp $
.\" $NetBSD: pstat.8,v 1.15 1997/06/05 06:14:16 mikel Exp $
.\"
.\" Copyright (c) 1980, 1991, 1993, 1994
.\" The Regents of the University of California. All rights reserved.
@ -41,7 +41,11 @@
.Nd display system data structures
.Sh SYNOPSIS
.Nm pstat
.Op Fl Tfknstv
.Oo
.Fl T | Fl f | Fl s |
.Fl t | Fl v
.Oc
.Op Fl kn
.Op Fl M Ar core
.Op Fl N Ar system
.Sh DESCRIPTION

View File

@ -1,4 +1,4 @@
/* $NetBSD: pstat.c,v 1.28 1997/05/28 19:26:52 pk Exp $ */
/* $NetBSD: pstat.c,v 1.29 1997/06/05 06:14:17 mikel Exp $ */
/*-
* Copyright (c) 1980, 1991, 1993
@ -43,7 +43,7 @@ static char copyright[] =
#if 0
from: static char sccsid[] = "@(#)pstat.c 8.9 (Berkeley) 2/16/94";
#else
static char *rcsid = "$NetBSD: pstat.c,v 1.28 1997/05/28 19:26:52 pk Exp $";
static char *rcsid = "$NetBSD: pstat.c,v 1.29 1997/06/05 06:14:17 mikel Exp $";
#endif
#endif /* not lint */
@ -1043,6 +1043,6 @@ void
usage()
{
(void)fprintf(stderr,
"usage: pstat [-Tfknstv] [-M core] [-N system]\n");
"usage: pstat [-T|-f|-s|-t|-v] [-kn] [-M core] [-N system]\n");
exit(1);
}