From a334319f6530564d22e775935d9c91663623a1b4 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 22 Dec 2004 20:10:10 +0000 Subject: (CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4. --- nptl/tst-cancel24.cc | 113 --------------------------------------------------- 1 file changed, 113 deletions(-) delete mode 100644 nptl/tst-cancel24.cc (limited to 'nptl/tst-cancel24.cc') diff --git a/nptl/tst-cancel24.cc b/nptl/tst-cancel24.cc deleted file mode 100644 index 1af709a..0000000 --- a/nptl/tst-cancel24.cc +++ /dev/null @@ -1,113 +0,0 @@ -#include -#include -#include -#include -#include - - -static volatile bool destr_called; -static volatile bool except_caught; - -static pthread_barrier_t b; - - -struct monitor -{ - // gcc is broken and would generate a warning without this dummy - // constructor. - monitor () { } - ~monitor() { destr_called = true; } -}; - - -static void * -tf (void *arg) -{ - sem_t *s = static_cast (arg); - - try - { - monitor m; - - pthread_barrier_wait (&b); - - while (1) - sem_wait (s); - } - catch (...) - { - except_caught = true; - throw; - } - - return NULL; -} - - -static int -do_test () -{ - if (pthread_barrier_init (&b, NULL, 2) != 0) - { - puts ("barrier_init failed"); - return 1; - } - - sem_t s; - if (sem_init (&s, 0, 0) != 0) - { - puts ("sem_init failed"); - return 1; - } - - pthread_t th; - if (pthread_create (&th, NULL, tf, &s) != 0) - { - puts ("pthread_create failed"); - return 1; - } - - pthread_barrier_wait (&b); - - /* There is unfortunately no better method to try to assure the - child thread reached the sem_wait call and is actually waiting - than to sleep here. */ - sleep (1); - - if (pthread_cancel (th) != 0) - { - puts ("cancel failed"); - return 1; - } - - void *res; - if (pthread_join (th, &res) != 0) - { - puts ("join failed"); - return 1; - } - - if (res != PTHREAD_CANCELED) - { - puts ("thread was not canceled"); - return 1; - } - - if (! except_caught) - { - puts ("exception not caught"); - return 1; - } - - if (! destr_called) - { - puts ("destructor not called"); - return 1; - } - - return 0; -} - -#define TEST_FUNCTION do_test () -#define TIMEOUT 3 -#include "../test-skeleton.c" -- cgit v1.1