From eb937a52856857e7ecb1fadb565c3fc9775ed60e Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Tue, 27 Feb 2018 00:55:59 +0100 Subject: hurd: fix timer_routines.c build * sysdeps/pthread/timer_routines.c: [!defined DELAYTIMER_MAX] (DELAYTIMER_MAX): Define to INT_MAX. --- sysdeps/pthread/timer_routines.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'sysdeps') 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 +#ifndef DELAYTIMER_MAX +# define DELAYTIMER_MAX INT_MAX +#endif /* Number of threads used. */ #define THREAD_MAXNODES 16 -- cgit v1.2.3