From 70c31c7bd779400d2eb56dcb4075bb37227081db Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Tue, 29 Mar 2011 10:05:57 -0400 Subject: some preliminaries for adding POSIX timers --- src/internal/pthread_impl.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/internal') diff --git a/src/internal/pthread_impl.h b/src/internal/pthread_impl.h index c8fa4b11..615b963a 100644 --- a/src/internal/pthread_impl.h +++ b/src/internal/pthread_impl.h @@ -43,6 +43,10 @@ struct pthread { } robust_list; }; +struct __timer { + struct sigevent sev; +}; + #define __SU (sizeof(size_t)/sizeof(int)) #define _a_stacksize __u.__s[0] -- cgit v1.2.1