about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2005-11-28 08:25:55 +0000
committerAndreas Jaeger <aj@suse.de>2005-11-28 08:25:55 +0000
commitb02adc678ab123adce16edeff2916d0f423a801c (patch)
treee6f7d88910edcb44c34afafa4f5eda3df1748db6
parent01abbc0f7f1e0f88532664ecc3592b30b1c871d0 (diff)
downloadglibc-b02adc678ab123adce16edeff2916d0f423a801c.tar.gz
glibc-b02adc678ab123adce16edeff2916d0f423a801c.tar.xz
glibc-b02adc678ab123adce16edeff2916d0f423a801c.zip
(MREMAP_FIXED): Added. Patch by René Rebe <rene@exactcode.de>.
2005-11-28  Andreas Jaeger  <aj@suse.de>

	* sysdeps/unix/sysv/linux/mips/bits/mman.h (MREMAP_FIXED): Added,
	Patch by René Rebe <rene@exactcode.de>.
-rw-r--r--ChangeLog5
-rw-r--r--sysdeps/unix/sysv/linux/mips/bits/mman.h3
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 2b56ff887f..1c3cc1ee26 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-11-28  Andreas Jaeger  <aj@suse.de>
+
+	* sysdeps/unix/sysv/linux/mips/bits/mman.h (MREMAP_FIXED): Added,
+	Patch by René Rebe <rene@exactcode.de>.
+
 2005-11-27  Ulrich Drepper  <drepper@redhat.com>
 
 	* sysdeps/posix/getaddrinfo.c: Avoid RFC 3484 sorting if there are
diff --git a/sysdeps/unix/sysv/linux/mips/bits/mman.h b/sysdeps/unix/sysv/linux/mips/bits/mman.h
index 154501fba2..92d4b8a340 100644
--- a/sysdeps/unix/sysv/linux/mips/bits/mman.h
+++ b/sysdeps/unix/sysv/linux/mips/bits/mman.h
@@ -1,5 +1,5 @@
 /* Definitions for POSIX memory map interface.  Linux/MIPS version.
-   Copyright (C) 1997, 2000, 2003, 2004 Free Software Foundation, Inc.
+   Copyright (C) 1997, 2000, 2003, 2004, 2005 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -89,4 +89,5 @@
 /* Flags for `mremap'.  */
 #ifdef __USE_GNU
 # define MREMAP_MAYMOVE	1
+# define MREMAP_FIXED	2
 #endif