diff options
author | trhodes <trhodes@FreeBSD.org> | 2003-01-06 23:20:55 +0000 |
---|---|---|
committer | trhodes <trhodes@FreeBSD.org> | 2003-01-06 23:20:55 +0000 |
commit | ef408d5a3afde5ef326942a29c38ebc10e8f4eb7 (patch) | |
tree | 5927ae8e49c2cb1fea27ae7f25c809a5ae0497ff /lib/libc/sys | |
parent | ca133c7f1138d344b892c38e815ed6c5ceaa48f0 (diff) | |
download | FreeBSD-src-ef408d5a3afde5ef326942a29c38ebc10e8f4eb7.zip FreeBSD-src-ef408d5a3afde5ef326942a29c38ebc10e8f4eb7.tar.gz |
Remove redundant documenation.
PR: 46253
Submitted by: Jeroen Ruigrok van der Werven <asmodai@wxs.nl>
Diffstat (limited to 'lib/libc/sys')
-rw-r--r-- | lib/libc/sys/madvise.2 | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/lib/libc/sys/madvise.2 b/lib/libc/sys/madvise.2 index 6e6397d..27a032f 100644 --- a/lib/libc/sys/madvise.2 +++ b/lib/libc/sys/madvise.2 @@ -50,21 +50,8 @@ The system call allows a process that has knowledge of its memory behavior to describe it to the system. -The known behaviors are given in -.Aq Pa sys/mman.h : -.Bd -literal -#define MADV_NORMAL 0 /* no further special treatment */ -#define MADV_RANDOM 1 /* expect random page references */ -#define MADV_SEQUENTIAL 2 /* expect sequential references */ -#define MADV_WILLNEED 3 /* will need these pages */ -#define MADV_DONTNEED 4 /* don't need these pages */ -#define MADV_FREE 5 /* data is now unimportant */ -#define MADV_NOSYNC 6 /* no explicit commit to physical backing store */ -#define MADV_AUTOSYNC 7 /* default commit method to physical backing store */ -#define MADV_NOCORE 8 /* do not include these pages in a core file */ -#define MADV_CORE 9 /* revert to including pages in a core file */ -.Ed .Pp +The known behaviors are: .Bl -tag -width MADV_SEQUENTIAL .It Dv MADV_NORMAL Tells the system to revert to the default paging |