From 2063c4cac27f118c21dcb9352e8a4903131c88c8 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sat, 9 Apr 2011 02:26:55 -0400 Subject: run pthread tsd destructors when a timer thread pretends to exit --- src/time/timer_create.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/time/timer_create.c b/src/time/timer_create.c index 1b184f74..c107e150 100644 --- a/src/time/timer_create.c +++ b/src/time/timer_create.c @@ -13,11 +13,17 @@ struct start_args { struct sigevent *sev; }; +static void dummy_1(pthread_t self) +{ +} +weak_alias(dummy_1, __pthread_tsd_run_dtors); + static void cleanup_fromsig(void *p) { pthread_t self = __pthread_self(); self->cancel = 0; self->cancelbuf = 0; + __pthread_tsd_run_dtors(self); longjmp(p, 1); } -- cgit v1.2.1