diff mbox series

[hurd,commited] hurd: fix timer_routines.c build

Message ID 20180226235706.18031-1-samuel.thibault@ens-lyon.org
State New
Headers show
Series [hurd,commited] hurd: fix timer_routines.c build | expand

Commit Message

Samuel Thibault Feb. 26, 2018, 11:57 p.m. UTC
* sysdeps/pthread/timer_routines.c: [!defined DELAYTIMER_MAX]
        (DELAYTIMER_MAX): Define to INT_MAX.
---
 ChangeLog                        | 1 +
 sysdeps/pthread/timer_routines.c | 3 +++
 2 files changed, 4 insertions(+)
diff mbox series

Patch

diff --git a/ChangeLog b/ChangeLog
index 98fb162882..5ef9814516 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 84861b9557..940db62b25 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