This is the mail archive of the libc-ports@sources.redhat.com mailing list for the libc-ports project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Update bits/shm.h files


I've applied this patch to update ARM and MIPS bits/shm.h files for recent 
libc changes.

Index: ChangeLog.arm
===================================================================
RCS file: /cvs/glibc/ports/ChangeLog.arm,v
retrieving revision 1.89
diff -u -r1.89 ChangeLog.arm
--- ChangeLog.arm	27 Jan 2009 17:10:08 -0000	1.89
+++ ChangeLog.arm	2 Feb 2009 15:33:36 -0000
@@ -1,3 +1,7 @@
+2009-02-02  Joseph Myers  <joseph@codesourcery.com>
+
+	* sysdeps/unix/sysv/linux/arm/bits/shm.h (SHM_EXEC): Define.
+
 2009-01-27  Min Zhang  <mzhang@mvista.com>
 
 	* sysdeps/arm/memset.S (memset): Use stm instead of two
Index: ChangeLog.mips
===================================================================
RCS file: /cvs/glibc/ports/ChangeLog.mips,v
retrieving revision 1.70
diff -u -r1.70 ChangeLog.mips
--- ChangeLog.mips	27 Jan 2009 15:32:55 -0000	1.70
+++ ChangeLog.mips	2 Feb 2009 15:33:36 -0000
@@ -1,3 +1,7 @@
+2009-02-02  Joseph Myers  <joseph@codesourcery.com>
+
+	* sysdeps/unix/sysv/linux/mips/bits/shm.h (SHM_EXEC): Define.
+
 2009-01-27  Maciej W. Rozycki  <macro@linux-mips.org>
 	    Atsushi Nemoto  <anemo@mba.ocn.ne.jp>
 
Index: sysdeps/unix/sysv/linux/arm/bits/shm.h
===================================================================
RCS file: /cvs/glibc/ports/sysdeps/unix/sysv/linux/arm/bits/shm.h,v
retrieving revision 1.1
diff -u -r1.1 shm.h
--- sysdeps/unix/sysv/linux/arm/bits/shm.h	21 Apr 2008 15:26:44 -0000	1.1
+++ sysdeps/unix/sysv/linux/arm/bits/shm.h	2 Feb 2009 15:33:36 -0000
@@ -1,4 +1,4 @@
-/* Copyright (C) 1995,1996,1997,2000,2002,2004,2008
+/* Copyright (C) 1995,1996,1997,2000,2002,2004,2008,2009
    Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
@@ -31,6 +31,7 @@
 #define SHM_RDONLY	010000		/* attach read-only else read-write */
 #define SHM_RND		020000		/* round attach address to SHMLBA */
 #define SHM_REMAP	040000		/* take-over region on attach */
+#define SHM_EXEC	0100000		/* execution access */
 
 /* Commands for `shmctl'.  */
 #define SHM_LOCK	11		/* lock segment (root only) */
Index: sysdeps/unix/sysv/linux/mips/bits/shm.h
===================================================================
RCS file: /cvs/glibc/ports/sysdeps/unix/sysv/linux/mips/bits/shm.h,v
retrieving revision 1.9
diff -u -r1.9 shm.h
--- sysdeps/unix/sysv/linux/mips/bits/shm.h	21 Apr 2008 15:45:00 -0000	1.9
+++ sysdeps/unix/sysv/linux/mips/bits/shm.h	2 Feb 2009 15:33:36 -0000
@@ -1,4 +1,4 @@
-/* Copyright (C) 1995,1996,1997,2000,2001,2002,2003 Free Software Foundation, Inc.
+/* Copyright (C) 1995,1996,1997,2000,2001,2002,2003,2009 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
@@ -30,6 +30,7 @@
 #define SHM_RDONLY	010000		/* attach read-only else read-write */
 #define SHM_RND		020000		/* round attach address to SHMLBA */
 #define SHM_REMAP	040000		/* take-over region on attach */
+#define SHM_EXEC	0100000		/* execution access */
 
 /* Commands for `shmctl'.  */
 #define SHM_LOCK	11		/* lock segment (root only) */

-- 
Joseph S. Myers
joseph@codesourcery.com


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]