diff options
Diffstat (limited to 'libpthread/nptl/cancellation.c')
-rw-r--r-- | libpthread/nptl/cancellation.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libpthread/nptl/cancellation.c b/libpthread/nptl/cancellation.c index 1d28d383f..59e16b9e1 100644 --- a/libpthread/nptl/cancellation.c +++ b/libpthread/nptl/cancellation.c @@ -32,6 +32,7 @@ __pthread_enable_asynccancel (void) struct pthread *self = THREAD_SELF; int oldval = THREAD_GETMEM (self, cancelhandling); +//printf("%s\n", __FUNCTION__); while (1) { int newval = oldval | CANCELTYPE_BITMASK; @@ -64,6 +65,7 @@ void internal_function attribute_hidden __pthread_disable_asynccancel (int oldtype) { +//printf("%s\n", __FUNCTION__); /* If asynchronous cancellation was enabled before we do not have anything to do. */ if (oldtype & CANCELTYPE_BITMASK) |