From: Rich Felker Date: Fri, 12 Aug 2011 02:34:09 +0000 (-0400) Subject: normal exit from timer thread should run dtors, restore cancel state X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=8b625e45ff27ae6604ced1039d6c28293b60380a;hp=c5168071738467fb67e932976e56f364291cca60 normal exit from timer thread should run dtors, restore cancel state --- diff --git a/src/time/timer_create.c b/src/time/timer_create.c index 593f73aa..f596b0fe 100644 --- a/src/time/timer_create.c +++ b/src/time/timer_create.c @@ -40,7 +40,7 @@ static void timer_handler(int sig, siginfo_t *si, void *ctx) if (!setjmp(jb) && si->si_code == SI_TIMER) { pthread_cleanup_push(cleanup_fromsig, jb); notify(val); - pthread_cleanup_pop(0); + pthread_cleanup_pop(1); } }