- Clarification on kld_file_stat.size

- While here, remove a few C comments that don't seem to contribute
  anything additional to the man page.

PR:		146047
Submitted by:	arundel
MFC after:	3 days
This commit is contained in:
Glen Barber 2011-04-23 20:59:58 +00:00
parent d7c2f00c7c
commit 796b74169c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=220975

View File

@ -25,7 +25,7 @@
.\"
.\" $FreeBSD$
.\"
.Dd March 3, 1999
.Dd April 23, 2011
.Dt KLDSTAT 2
.Os
.Sh NAME
@ -51,8 +51,8 @@ struct kld_file_stat {
char name[MAXPATHLEN];
int refs;
int id;
caddr_t address; /* load address */
size_t size; /* size in bytes */
caddr_t address;
size_t size;
char pathname[MAXPATHLEN];
};
.Ed
@ -76,7 +76,7 @@ The id of the file specified in
.It address
The load address of the kld file.
.It size
The size of the file.
The amount of memory in bytes allocated by the file.
.It pathname
The full name of the file referred to by
.Fa fileid ,