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.26-286-gcae3d71


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  cae3d71212ff1885d9317c22411fe97ccd99e287 (commit)
      from  77e7ba3201365565a21b42979b8d44be9936f254 (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=cae3d71212ff1885d9317c22411fe97ccd99e287

commit cae3d71212ff1885d9317c22411fe97ccd99e287
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Sun Sep 3 14:33:35 2017 +0200

    hurd: Fix rtld's strtoul_internal use through hurdlookup
    
    	* sysdeps/mach/hurd/dl-sysdep.c (__strtoul_internal): New
    	function.

diff --git a/ChangeLog b/ChangeLog
index 25ea83f..4802f7c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -18,8 +18,8 @@
 	Fix <unistd.h> inclusion.
 	* sysdeps/posix/pwritev2.c: Include <errno.h>.
 	* sysdeps/posix/pwritev64v2.c: Include <errno.h>.
-	* sysdeps/mach/hurd/dl-sysdep.c (__access_noerrno, __sbrk): New
-	functions.
+	* sysdeps/mach/hurd/dl-sysdep.c (__access_noerrno, __sbrk,
+	__strtoul_internal): New functions.
 	* sysdeps/posix/pause.c: Include <sigsetops.h>.
 	* sysdeps/posix/system.c: Include <sigsetops.h>.
 	* sysdeps/mach/hurd/i386/Makefile
diff --git a/sysdeps/mach/hurd/dl-sysdep.c b/sysdeps/mach/hurd/dl-sysdep.c
index fd2f3d5..517e4d6 100644
--- a/sysdeps/mach/hurd/dl-sysdep.c
+++ b/sysdeps/mach/hurd/dl-sysdep.c
@@ -602,6 +602,15 @@ __sbrk (intptr_t increment)
   return (void *) addr;
 }
 
+unsigned long int
+weak_function
+__strtoul_internal (const char *nptr, char **endptr, int base, int group)
+{
+  assert (base == 0 || base == 10);
+  assert (group == 0);
+  return _dl_strtoul (nptr, endptr);
+}
+
 void weak_function attribute_hidden
 _exit (int status)
 {

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

Summary of changes:
 ChangeLog                     |    4 ++--
 sysdeps/mach/hurd/dl-sysdep.c |    9 +++++++++
 2 files changed, 11 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]