Fix MADV_REMOVE value.

This commit is contained in:
Ulrich Drepper 2006-05-02 14:33:44 +00:00
parent 1593583d58
commit 290806a914
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@
# define MADV_SEQUENTIAL 2 /* Expect sequential page references. */
# define MADV_WILLNEED 3 /* Will need these pages. */
# define MADV_DONTNEED 6 /* Don't need these pages. */
# define MADV_REMOVE 7 /* Remove these pages and resources. */
# define MADV_REMOVE 9 /* Remove these pages and resources. */
# define MADV_DONTFORK 10 /* Do not inherit across fork. */
# define MADV_DOFORK 11 /* Do inherit across fork. */
#endif