summaryrefslogtreecommitdiff
path: root/nptl/tst-sem12.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2007-05-26 01:23:04 +0000
committerUlrich Drepper <drepper@redhat.com>2007-05-26 01:23:04 +0000
commit2af4e3e5668f70976762282cfff715e68929aa81 (patch)
tree980d505143102b6f14936c0ea9f8b156717ec553 /nptl/tst-sem12.c
parent20a4d7228e33a9cc3e26a7ee935ede53306d8bd3 (diff)
Test of semaphores.
Diffstat (limited to 'nptl/tst-sem12.c')
-rw-r--r--nptl/tst-sem12.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/nptl/tst-sem12.c b/nptl/tst-sem12.c
new file mode 100644
index 0000000000..71d02b70e9
--- /dev/null
+++ b/nptl/tst-sem12.c
@@ -0,0 +1,14 @@
+#include <time.h>
+#include <sys/time.h>
+
+
+#define PREPARE \
+ struct timespec ts; \
+ struct timeval tv; \
+ gettimeofday (&tv, NULL); \
+ TIMEVAL_TO_TIMESPEC (&tv, &ts); \
+ ts.tv_sec += 60;
+
+#define SEM_WAIT(s) sem_timedwait (s, &ts)
+
+#include "tst-sem11.c"