Remove ENABLE_SSSE3_ON_ATOM.
[glibc.git] / nptl / tst-robust3.c
blobe56f2762c7046d590892c9caabfb274582b8ef92
1 #include <time.h>
2 #include <sys/time.h>
5 static struct timespec tmo;
8 #define PREPARE_TMO \
9 do { \
10 struct timeval tv; \
11 gettimeofday (&tv, NULL); \
13 /* Define the timeout as one hour in the future. */ \
14 tmo.tv_sec = tv.tv_sec + 3600; \
15 tmo.tv_nsec = 0; \
16 } while (0)
19 #define LOCK(m) pthread_mutex_timedlock (m, &tmo)
20 #include "tst-robust1.c"