This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc 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]

GNU C Library master sources branch release/2.25/master updated. glibc-2.25-36-g4a60d7e


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, release/2.25/master has been updated
       via  4a60d7e30a3152dc2dfc24ff65d7705aaff1a4b9 (commit)
      from  d215bbdff33323854ff5e3a3716459aaf2239f2f (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=4a60d7e30a3152dc2dfc24ff65d7705aaff1a4b9

commit 4a60d7e30a3152dc2dfc24ff65d7705aaff1a4b9
Author: John David Anglin <danglin@gcc.gnu.org>
Date:   Sat Aug 12 15:09:25 2017 -0400

    Fix [BZ locale/19838].
    
    	[BZ locale/19838]
    	* sysdeps/unix/sysv/linux/hppa/bits/shm.h (SHMLBA): Set to page size.

diff --git a/ChangeLog b/ChangeLog
index 8c03103..4593409 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2017-08-12  John David Anglin  <danglin@gcc.gnu.org>
 
+	[BZ locale/19838]
+	* sysdeps/unix/sysv/linux/hppa/bits/shm.h (SHMLBA): Set to page size.
+
 	* nptl/allocatestack.c (allocate_stack): Align old and new guard
 	addresses to page boundaries when the stack grows up.
 
diff --git a/sysdeps/unix/sysv/linux/hppa/bits/shm.h b/sysdeps/unix/sysv/linux/hppa/bits/shm.h
index 794f0ab..495dae8 100644
--- a/sysdeps/unix/sysv/linux/hppa/bits/shm.h
+++ b/sysdeps/unix/sysv/linux/hppa/bits/shm.h
@@ -37,7 +37,7 @@
 #define SHM_UNLOCK	12		/* unlock segment (root only) */
 
 /* Segment low boundary address multiple.  */
-#define SHMLBA 0x00400000		/* address needs to be 4 Mb aligned */
+#define SHMLBA		0x1000
 
 /* Type to count number of attaches.  */
 typedef unsigned long int shmatt_t;

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                               |    3 +++
 sysdeps/unix/sysv/linux/hppa/bits/shm.h |    2 +-
 2 files changed, 4 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


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