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]

Community source repository for glibc add-on ports branch, release/2.12/master, updated. glibc-2.12.2-1-g54ee77f


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 "Community source repository for glibc add-on ports".

The branch, release/2.12/master has been updated
       via  54ee77fce3112eac827c268ba23f8e68c4e45201 (commit)
      from  86db07dc1fbb93a5c72d4e0f880874751a19ef71 (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://sources.redhat.com/git/gitweb.cgi?p=glibc-ports.git;a=commitdiff;h=54ee77fce3112eac827c268ba23f8e68c4e45201

commit 54ee77fce3112eac827c268ba23f8e68c4e45201
Author: Andreas Schwab <schwab@linux-m68k.org>
Date:   Sun Jan 2 20:14:41 2011 +0100

    m68k: force alignment of sem_t
    (cherry picked from commit 9524dbd1f3f91a9b381bb0e17dc5e150fe8be75a)

diff --git a/ChangeLog.m68k b/ChangeLog.m68k
index 9c6697c..44a5603 100644
--- a/ChangeLog.m68k
+++ b/ChangeLog.m68k
@@ -1,3 +1,8 @@
+2011-01-10  Andreas Schwab  <schwab@linux-m68k.org>
+
+	* sysdeps/unix/sysv/linux/m68k/nptl/bits/semaphore.h (sem_t):
+	Force alignment.
+
 2010-08-25  Andreas Schwab  <schwab@linux-m68k.org>
 
 	* sysdeps/unix/sysv/linux/m68k/coldfire/sysdep.h
diff --git a/sysdeps/unix/sysv/linux/m68k/nptl/bits/semaphore.h b/sysdeps/unix/sysv/linux/m68k/nptl/bits/semaphore.h
index 2950cc9..baaa9eb 100644
--- a/sysdeps/unix/sysv/linux/m68k/nptl/bits/semaphore.h
+++ b/sysdeps/unix/sysv/linux/m68k/nptl/bits/semaphore.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2010 Free Software Foundation, Inc.
+/* Copyright (C) 2010, 2011 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Maxim Kuvyrkov <maxim@codesourcery.com>, 2010.
 
@@ -32,5 +32,5 @@
 typedef union
 {
   char __size[__SIZEOF_SEM_T];
-  long int __align;
+  long int __align __attribute__ ((aligned (4)));
 } sem_t;

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

Summary of changes:
 ChangeLog.m68k                                     |    5 +++++
 sysdeps/unix/sysv/linux/m68k/nptl/bits/semaphore.h |    4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
Community source repository for glibc add-on ports


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