diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-03-29 10:05:57 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-03-29 10:05:57 -0400 |
commit | 70c31c7bd779400d2eb56dcb4075bb37227081db (patch) | |
tree | a996de241fb11dfd48094285b090e88f84eb2782 /src/internal | |
parent | 8250742b90b8b54e642fa9201bf0cf8b7c27bbb8 (diff) | |
download | musl-70c31c7bd779400d2eb56dcb4075bb37227081db.tar.gz musl-70c31c7bd779400d2eb56dcb4075bb37227081db.tar.xz musl-70c31c7bd779400d2eb56dcb4075bb37227081db.zip |
some preliminaries for adding POSIX timers
Diffstat (limited to 'src/internal')
-rw-r--r-- | src/internal/pthread_impl.h | 4 |
1 files changed, 4 insertions, 0 deletions
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] |