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.27.9000-123-geb937a5


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  eb937a52856857e7ecb1fadb565c3fc9775ed60e (commit)
      from  03b540b3680122bbe19943b7afaf7d1fb1aa7a48 (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=eb937a52856857e7ecb1fadb565c3fc9775ed60e

commit eb937a52856857e7ecb1fadb565c3fc9775ed60e
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Tue Feb 27 00:55:59 2018 +0100

    hurd: fix timer_routines.c build
    
            * sysdeps/pthread/timer_routines.c: [!defined DELAYTIMER_MAX]
            (DELAYTIMER_MAX): Define to INT_MAX.

diff --git a/ChangeLog b/ChangeLog
index 98fb162..5ef9814 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,7 @@
 	* sysdeps/pthread/timer_routines.c: Include <timer_routines.h> instead
 	of <nptl/pthreadP.h>
 	(thread_attr_compare): Move function to...
+	[!defined DELAYTIMER_MAX] (DELAYTIMER_MAX): Define to INT_MAX.
 	* sysdeps/nptl/timer_routines.h: ... new header.
 
 2018-02-26  Joseph Myers  <joseph@codesourcery.com>
diff --git a/sysdeps/pthread/timer_routines.c b/sysdeps/pthread/timer_routines.c
index 84861b9..940db62 100644
--- a/sysdeps/pthread/timer_routines.c
+++ b/sysdeps/pthread/timer_routines.c
@@ -31,6 +31,9 @@
 #include "posix-timer.h"
 #include <internaltypes.h>
 
+#ifndef DELAYTIMER_MAX
+# define DELAYTIMER_MAX INT_MAX
+#endif
 
 /* Number of threads used.  */
 #define THREAD_MAXNODES	16

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

Summary of changes:
 ChangeLog                        |    1 +
 sysdeps/pthread/timer_routines.c |    3 +++
 2 files changed, 4 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]