diff options
author | gjb <gjb@FreeBSD.org> | 2011-04-23 20:59:58 +0000 |
---|---|---|
committer | gjb <gjb@FreeBSD.org> | 2011-04-23 20:59:58 +0000 |
commit | af070d163bd43489658830b3983e714a482c67f6 (patch) | |
tree | 49ed7c33f380811f3ba1983e426c5f915808578f /lib/libc/sys/kldstat.2 | |
parent | 867006828a368c0d321b6df013407610f6492b99 (diff) | |
download | FreeBSD-src-af070d163bd43489658830b3983e714a482c67f6.zip FreeBSD-src-af070d163bd43489658830b3983e714a482c67f6.tar.gz |
- 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
Diffstat (limited to 'lib/libc/sys/kldstat.2')
-rw-r--r-- | lib/libc/sys/kldstat.2 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/sys/kldstat.2 b/lib/libc/sys/kldstat.2 index 0d28928..7a48296 100644 --- a/lib/libc/sys/kldstat.2 +++ b/lib/libc/sys/kldstat.2 @@ -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 , |