From 80c4dcd2535a2d7f01eb539b0358dc51b0c0e122 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Tue, 29 Mar 2011 13:01:25 -0400 Subject: implement POSIX timers this implementation is superior to the glibc/nptl implementation, in that it gives true realtime behavior. there is no risk of timer expiration events being lost due to failed thread creation or failed malloc, because the thread is created as time creation time, and reused until the timer is deleted. --- include/limits.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/limits.h') diff --git a/include/limits.h b/include/limits.h index 55ad8231..3953aea5 100644 --- a/include/limits.h +++ b/include/limits.h @@ -31,6 +31,7 @@ #define PTHREAD_DESTRUCTOR_ITERATIONS 4 #define SEM_VALUE_MAX 0x7fffffff #define SEM_NSEMS_MAX 256 +#define DELAYTIMER_MAX 0x7fffffff /* Arbitrary numbers... */ -- cgit v1.2.1