Properly document the -M and -N options.

This commit is contained in:
Ruslan Ermilov 2004-03-26 11:01:45 +00:00
parent 376d460cff
commit ab82970ed2
2 changed files with 19 additions and 9 deletions
usr.bin/vmstat

@ -43,8 +43,7 @@
.\" .Op Fl fimst .\" .Op Fl fimst
.Op Fl afimsz .Op Fl afimsz
.Op Fl c Ar count .Op Fl c Ar count
.Op Fl M Ar core .Op Fl M Ar core Op Fl N Ar system
.Op Fl N Ar system
.Op Fl w Ar wait .Op Fl w Ar wait
.Op Fl n Ar devs .Op Fl n Ar devs
.Oo .Oo
@ -60,6 +59,16 @@ The
utility reports certain kernel statistics kept about process, virtual memory, utility reports certain kernel statistics kept about process, virtual memory,
disk, trap and cpu activity. disk, trap and cpu activity.
.Pp .Pp
If the
.Fl M
option is not specified, information is obtained from
the currently running kernel via the
.Xr sysctl 3
interface.
Otherwise, information is read from the specified core file,
using the name list from the specified kernel image (or from
the default image).
.Pp
The options are as follows: The options are as follows:
.Bl -tag -width indent .Bl -tag -width indent
.It Fl a .It Fl a
@ -90,14 +99,15 @@ Report on the number of interrupts taken by each device since system
startup. startup.
.It Fl M .It Fl M
Extract values associated with the name list from the specified Extract values associated with the name list from the specified
.Ar core .Ar core .
instead of the default
.Pa /dev/kmem .
.It Fl N .It Fl N
Extract the name list from the specified If
.Fl M
is also specified,
extract the name list from the specified
.Ar system .Ar system
instead of the default instead of the default,
.Pa /boot/kernel/kernel . which is the kernel image the system has booted from.
.It Fl m .It Fl m
Report on the usage of kernel dynamic memory listed first by size of Report on the usage of kernel dynamic memory listed first by size of
allocation and then by type of usage. allocation and then by type of usage.

@ -951,7 +951,7 @@ static void
usage(void) usage(void)
{ {
(void)fprintf(stderr, "%s%s", (void)fprintf(stderr, "%s%s",
"usage: vmstat [-aimsz] [-c count] [-M core] [-N system] [-w wait]\n", "usage: vmstat [-aimsz] [-c count] [-M core [-N system]] [-w wait]\n",
" [-n devs] [disks]\n"); " [-n devs] [disks]\n");
exit(1); exit(1);
} }