summaryrefslogtreecommitdiff
path: root/src/internal/pthread_impl.h
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2011-03-29 10:05:57 -0400
committerRich Felker <dalias@aerifal.cx>2011-03-29 10:05:57 -0400
commit70c31c7bd779400d2eb56dcb4075bb37227081db (patch)
treea996de241fb11dfd48094285b090e88f84eb2782 /src/internal/pthread_impl.h
parent8250742b90b8b54e642fa9201bf0cf8b7c27bbb8 (diff)
downloadmusl-70c31c7bd779400d2eb56dcb4075bb37227081db.tar.gz
some preliminaries for adding POSIX timers
Diffstat (limited to 'src/internal/pthread_impl.h')
-rw-r--r--src/internal/pthread_impl.h4
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]