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 linaro/2.21/master updated. glibc-2.21-51-g43765a1


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, linaro/2.21/master has been updated
       via  43765a182c200e9c43419568b9222e2b8b097050 (commit)
      from  1b248392fbadaa5a81ed220fdf2f7ec3b9939b9e (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=43765a182c200e9c43419568b9222e2b8b097050

commit 43765a182c200e9c43419568b9222e2b8b097050
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Tue Feb 7 12:10:25 2017 -0200

    malloc: Fix i686 build from malloc interpose backport
    
    This patch fixes i686 build after malloc interpose fix backport
    (commit 749c94d4).
    
    Checked on i686-linux-gnu.
    
    	* malloc/arena.c (__malloc_fork_lock_parent): Add internal_function
    	attribute.
    	(__malloc_fork_unlock_parent): Likewise.
    	(__malloc_fork_unlock_child): Likewise.

diff --git a/ChangeLog b/ChangeLog
index 907cc1d..d040992 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2017-02-07  Adhemerval Zanella  <adhemerval.zanella@linaro.org>
+
+	* malloc/arena.c (__malloc_fork_lock_parent): Add internal_function
+	attribute.
+	(__malloc_fork_unlock_parent): Likewise.
+	(__malloc_fork_unlock_child): Likewise.
+
 2015-07-29  H.J. Lu  <hongjiu.lu@intel.com>
 
 	[BZ #18078]
diff --git a/malloc/arena.c b/malloc/arena.c
index 921833d..db71883 100644
--- a/malloc/arena.c
+++ b/malloc/arena.c
@@ -209,6 +209,7 @@ static unsigned int atfork_recursive_cntr;
    subsystem.  */
 
 void
+internal_function
 __malloc_fork_lock_parent (void)
 {
   mstate ar_ptr;
@@ -251,6 +252,7 @@ out:
 }
 
 void
+internal_function
 __malloc_fork_unlock_parent (void)
 {
   mstate ar_ptr;
@@ -278,6 +280,7 @@ __malloc_fork_unlock_parent (void)
 }
 
 void
+internal_function
 __malloc_fork_unlock_child (void)
 {
   mstate ar_ptr;

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

Summary of changes:
 ChangeLog      |    7 +++++++
 malloc/arena.c |    3 +++
 2 files changed, 10 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]