diff options
author | Richard Henderson <rth@redhat.com> | 2000-03-20 20:24:41 +0000 |
---|---|---|
committer | Richard Henderson <rth@redhat.com> | 2000-03-20 20:24:41 +0000 |
commit | 45159f0082e995c3a0e4829dd7c8662ffc0bd041 (patch) | |
tree | c0896fbb4ff42722cd27ac06fde26092909c441a /sysdeps | |
parent | c069bb98d20c31e40a2e7e8341d5884b42b50f78 (diff) | |
download | glibc-45159f0082e995c3a0e4829dd7c8662ffc0bd041.tar.gz glibc-45159f0082e995c3a0e4829dd7c8662ffc0bd041.tar.xz glibc-45159f0082e995c3a0e4829dd7c8662ffc0bd041.zip |
* sysdeps/unix/sysv/linux/alpha/bits/mman.h: Add MADV constants.
* sysdeps/unix/sysv/linux/alpha/bits/mman.h: Add MADV constants.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/unix/sysv/linux/alpha/bits/mman.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/alpha/bits/mman.h b/sysdeps/unix/sysv/linux/alpha/bits/mman.h index 1411c85831..a7ada102d2 100644 --- a/sysdeps/unix/sysv/linux/alpha/bits/mman.h +++ b/sysdeps/unix/sysv/linux/alpha/bits/mman.h @@ -81,3 +81,19 @@ #ifdef __USE_GNU # define MREMAP_MAYMOVE 1 #endif + +/* Advice to `madvise'. */ +#ifdef __USE_BSD +# define MADV_NORMAL 0 /* No further special treatment. */ +# define MADV_RANDOM 1 /* Expect random page references. */ +# 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. */ +#endif + +/* Not used by Linux, but here to make sure we don't clash with + OSF/1 defines. */ +#if 0 && defined(__USE_BSD) +# define MADV_DONTNEED_COMPAT 4 /* Old version? */ +# define MADV_SPACEAVAIL 5 /* Ensure resources are available. */ +#endif |