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 dj/malloc-tcache updated. glibc-2.24-671-g53b3836


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, dj/malloc-tcache has been updated
       via  53b383690979db3428371ccf85042f86db3b5615 (commit)
      from  2e77fe7e00370abd1090a665453eee31fddedbb1 (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=53b383690979db3428371ccf85042f86db3b5615

commit 53b383690979db3428371ccf85042f86db3b5615
Author: DJ Delorie <dj@delorie.com>
Date:   Fri Jan 27 14:03:29 2017 -0500

    Remove unneeded initializers.

diff --git a/malloc/malloc.c b/malloc/malloc.c
index b618be8..5b61f75 100644
--- a/malloc/malloc.c
+++ b/malloc/malloc.c
@@ -2944,7 +2944,7 @@ typedef struct TCache {
   TCacheEntry *entries[TCACHE_IDX];
 } TCache;
 
-static __thread TCache tcache = {0,0,0,{0},{0}};
+static __thread TCache tcache = {0,{0},{0}};
 
 static void __attribute__ ((section ("__libc_thread_freeres_fn")))
 tcache_thread_freeres (void)

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

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