From a25077a431758b30aa60103945fe70811e8207ef Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Sun, 16 Feb 2020 14:30:17 +0000 Subject: pthread: Move robust mutex tests from nptl to sysdeps/pthread tst-robust8.c prints some mutex internals for nptl debugging, this needed to be made conditioned by getting built with nptl. --- nptl/tst-robust3.c | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 nptl/tst-robust3.c (limited to 'nptl/tst-robust3.c') diff --git a/nptl/tst-robust3.c b/nptl/tst-robust3.c deleted file mode 100644 index e56f2762c7..0000000000 --- a/nptl/tst-robust3.c +++ /dev/null @@ -1,20 +0,0 @@ -#include -#include - - -static struct timespec tmo; - - -#define PREPARE_TMO \ - do { \ - struct timeval tv; \ - gettimeofday (&tv, NULL); \ - \ - /* Define the timeout as one hour in the future. */ \ - tmo.tv_sec = tv.tv_sec + 3600; \ - tmo.tv_nsec = 0; \ - } while (0) - - -#define LOCK(m) pthread_mutex_timedlock (m, &tmo) -#include "tst-robust1.c" -- cgit 1.4.1