diff options
Diffstat (limited to 'nptl/tst-tls3.c')
-rw-r--r-- | nptl/tst-tls3.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/nptl/tst-tls3.c b/nptl/tst-tls3.c index 649cb8f0d5..4b96974398 100644 --- a/nptl/tst-tls3.c +++ b/nptl/tst-tls3.c @@ -39,13 +39,19 @@ static long stack_size_in_mb; static pthread_t th[N]; +static int do_test (void); + +#define TIMEOUT 5 +#define TEST_FUNCTION do_test () +#include "../test-skeleton.c" + #define CB(n) \ static void \ cb##n (void) \ { \ if (th[n] != pthread_self ()) \ { \ - write (STDOUT_FILENO, "wrong callback\n", 15); \ + write_message ("wrong callback\n"); \ _exit (1); \ } \ } @@ -207,8 +213,3 @@ do_test (void) return 0; } - - -#define TIMEOUT 5 -#define TEST_FUNCTION do_test () -#include "../test-skeleton.c" |