about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2000-03-20 20:24:41 +0000
committerRichard Henderson <rth@redhat.com>2000-03-20 20:24:41 +0000
commit45159f0082e995c3a0e4829dd7c8662ffc0bd041 (patch)
treec0896fbb4ff42722cd27ac06fde26092909c441a
parentc069bb98d20c31e40a2e7e8341d5884b42b50f78 (diff)
downloadglibc-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.
-rw-r--r--ChangeLog2
-rw-r--r--sysdeps/unix/sysv/linux/alpha/bits/mman.h16
2 files changed, 18 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 9c64104274..8ef44860f6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2000-03-20  Richard Henderson  <rth@cygnus.com>
 
+	* sysdeps/unix/sysv/linux/alpha/bits/mman.h: Add MADV constants.
+
 	* sysdeps/unix/sysv/linux/alpha/Makefile (sysdep_routines):
 	Kill sethae.
 	* sysdeps/unix/sysv/linux/alpha/Versions: Add pciconfig_iobase.
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