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, master, updated. glibc-2.10-240-g1877ea1


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, master has been updated
       via  1877ea16ca0714abd715d6ce0aa1b840c3850241 (commit)
      from  5b938b2543c991be88a06fd7438f804d05358ac1 (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.git;a=commitdiff;h=1877ea16ca0714abd715d6ce0aa1b840c3850241

commit 1877ea16ca0714abd715d6ce0aa1b840c3850241
Author: Jakub Jelinek <jakub@redhat.com>
Date:   Fri Jul 31 07:26:36 2009 -0700

    Fix obstack* on i?86
    
    obstack calls several callbacks, so on i?86 it'd better be compiled
    without -mpreferred-stack-boundary=2, otherwise the callbacks are called
    with misaligned stack.

diff --git a/ChangeLog b/ChangeLog
index eca461f..2ff87e5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2009-07-31  Jakub Jelinek  <jakub@redhat.com>
+
+	* malloc/Makefile (CFLAGS-obstack.c): Add $(uses-callbacks).
+
 2009-07-30  Ulrich Drepper  <drepper@redhat.com>
 
 	* sysdeps/unix/sysv/linux/i386/____longjmp_chk.S: New file.
diff --git a/malloc/Makefile b/malloc/Makefile
index 1099335..e7ec1ab 100644
--- a/malloc/Makefile
+++ b/malloc/Makefile
@@ -104,6 +104,7 @@ $(objpfx)memusagestat: $(memusagestat-modules:%=$(objpfx)%.o)
 include ../Rules
 
 CFLAGS-mcheck-init.c = $(PIC-ccflag)
+CFLAGS-obstack.c = $(uses-callbacks)
 
 $(objpfx)libmcheck.a: $(objpfx)mcheck-init.o
 	-rm -f $@

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

Summary of changes:
 ChangeLog       |    4 ++++
 malloc/Makefile |    1 +
 2 files changed, 5 insertions(+), 0 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]