small fix for new pthread cleanup stuff
authorRich Felker <dalias@aerifal.cx>
Fri, 10 Feb 2012 02:24:56 +0000 (21:24 -0500)
committerRich Felker <dalias@aerifal.cx>
Fri, 10 Feb 2012 02:24:56 +0000 (21:24 -0500)
even if pthread_create/exit code is not linked, run flag needs to be
checked and cleanup function potentially run on pop. thus, move the
code to the module that's always linked when pthread_cleanup_push/pop
is used.

src/thread/cancellation.c
src/thread/pthread_create.c

index 967705a..23d23d1 100644 (file)
@@ -11,6 +11,7 @@ void _pthread_cleanup_push(struct __ptcb *cb, void (*f)(void *), void *x)
 void _pthread_cleanup_pop(struct __ptcb *cb, int run)
 {
        __do_cleanup_pop(cb, run);
+       if (run) cb->__f(cb->__x);
 }
 
 static void dummy()
index 87bf816..d84e50a 100644 (file)
@@ -55,7 +55,6 @@ void __do_cleanup_push(struct __ptcb *cb, void (*f)(void *), void *x)
 void __do_cleanup_pop(struct __ptcb *cb, int run)
 {
        __pthread_self()->cancelbuf = cb->__next;
-       if (run) cb->__f(cb->__x);
 }
 
 static int start(void *p)