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.11-365-g5d7a654


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  5d7a6541c2365c64622904366bc4f5c1cb2a73d5 (commit)
      from  fc97f36d7fe49286d864f3996bcb9b40d9a1f7f4 (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=5d7a6541c2365c64622904366bc4f5c1cb2a73d5

commit 5d7a6541c2365c64622904366bc4f5c1cb2a73d5
Author: Ulrich Drepper <drepper@redhat.com>
Date:   Fri Apr 9 12:29:18 2010 -0700

    Fix typo in last commit.

diff --git a/nptl/sysdeps/unix/sysv/linux/pthread_getname.c b/nptl/sysdeps/unix/sysv/linux/pthread_getname.c
index c6d78df..593219b 100644
--- a/nptl/sysdeps/unix/sysv/linux/pthread_getname.c
+++ b/nptl/sysdeps/unix/sysv/linux/pthread_getname.c
@@ -43,7 +43,7 @@ pthread_getname_np (th, buf, len)
     return ERANGE;
 
   if (th == THREAD_SELF)
-    return prctl (PR_SET_NAME, buf) ? errno : 0;
+    return prctl (PR_GET_NAME, buf) ? errno : 0;
 
 #define FMT "/proc/self/task/%u/comm"
   char fname[sizeof (FMT) + 8];

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

Summary of changes:
 nptl/sysdeps/unix/sysv/linux/pthread_getname.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]