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.12-60-g5be9d05


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  5be9d05d3136460cf6cedd3823fd236aeebe83ef (commit)
       via  e8ee8bdf2a6fa0b8bde192c71e0c0bfcd45c4bb9 (commit)
      from  eb5e79feb71e6a9bf7fcb59a5e2c56ab09a08868 (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=5be9d05d3136460cf6cedd3823fd236aeebe83ef

commit 5be9d05d3136460cf6cedd3823fd236aeebe83ef
Author: Andreas Schwab <schwab@redhat.com>
Date:   Tue Jul 6 08:09:54 2010 -0700

    Don't pass NULL occation to dl_signal_cerror

diff --git a/ChangeLog b/ChangeLog
index a649f09..3e58a18 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2010-07-06  Andreas Schwab  <schwab@redhat.com>
+
+	* elf/dl-version.c (match_symbol): Don't pass NULL occation to
+	dl_signal_cerror.
+
 2010-07-06  Ulrich Drepper  <drepper@redhat.com>
 
 	* sysdeps/unix/sysv/linux/fpathconf.c (__fpathconf): Implement
diff --git a/elf/dl-version.c b/elf/dl-version.c
index c59a6c3..4415817 100644
--- a/elf/dl-version.c
+++ b/elf/dl-version.c
@@ -169,7 +169,7 @@ no version information available (required by ", name, ")");
   result = 1;
  call_cerror:
   _dl_signal_cerror (0, map->l_name[0] ? map->l_name : rtld_progname,
-		     NULL, errstring);
+		     N_("version lookup error"), errstring);
   return result;
 }
 

http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=e8ee8bdf2a6fa0b8bde192c71e0c0bfcd45c4bb9

commit e8ee8bdf2a6fa0b8bde192c71e0c0bfcd45c4bb9
Author: Andreas Schwab <schwab@redhat.com>
Date:   Tue Jul 6 08:08:46 2010 -0700

    Fix type mismatch

diff --git a/nptl/ChangeLog b/nptl/ChangeLog
index 5a392ef..c1f8620 100644
--- a/nptl/ChangeLog
+++ b/nptl/ChangeLog
@@ -1,3 +1,8 @@
+2010-07-06  Andreas Schwab  <schwab@redhat.com>
+
+	* sysdeps/unix/sysv/linux/pthread_getname.c (pthread_getname_np):
+	Fix type mismatch.
+
 2010-07-03  Ulrich Drepper  <drepper@redhat.com>
 
 	* tst-abstime.c (do_test): Some more cleanups
diff --git a/nptl/sysdeps/unix/sysv/linux/pthread_getname.c b/nptl/sysdeps/unix/sysv/linux/pthread_getname.c
index 593219b..6e7786f 100644
--- a/nptl/sysdeps/unix/sysv/linux/pthread_getname.c
+++ b/nptl/sysdeps/unix/sysv/linux/pthread_getname.c
@@ -42,7 +42,7 @@ pthread_getname_np (th, buf, len)
   if (len < TASK_COMM_LEN)
     return ERANGE;
 
-  if (th == THREAD_SELF)
+  if (pd == THREAD_SELF)
     return prctl (PR_GET_NAME, buf) ? errno : 0;
 
 #define FMT "/proc/self/task/%u/comm"

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

Summary of changes:
 ChangeLog                                      |    5 +++++
 elf/dl-version.c                               |    2 +-
 nptl/ChangeLog                                 |    5 +++++
 nptl/sysdeps/unix/sysv/linux/pthread_getname.c |    2 +-
 4 files changed, 12 insertions(+), 2 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]