diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-05-23 14:13:54 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-05-23 14:13:54 -0400 |
commit | cfd892fde9454e014d9b291a56ce5740d8bc4a78 (patch) | |
tree | 25549d8ed33ff5205961084435b51849cc15f9e6 /src/thread/cancellation.c | |
parent | 25d575edc494e5a519468889e62beea4dde186ea (diff) | |
download | musl-cfd892fde9454e014d9b291a56ce5740d8bc4a78.tar.gz |
simplify cancellation push/pop slightly
no need to pass unnecessary extra arguments on to the core code in
pthread_create.c. this just wastes cycles and code bloat.
Diffstat (limited to 'src/thread/cancellation.c')
-rw-r--r-- | src/thread/cancellation.c | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/src/thread/cancellation.c b/src/thread/cancellation.c index ab7eebcc..9b21764b 100644 --- a/src/thread/cancellation.c +++ b/src/thread/cancellation.c @@ -1,23 +1,20 @@ #include "pthread_impl.h" -void __do_cleanup_push(); -void __do_cleanup_pop(); +static void dummy(struct __ptcb *cb) +{ +} +weak_alias(dummy, __do_cleanup_push); +weak_alias(dummy, __do_cleanup_pop); void _pthread_cleanup_push(struct __ptcb *cb, void (*f)(void *), void *x) { cb->__f = f; cb->__x = x; - __do_cleanup_push(cb, f, x); + __do_cleanup_push(cb); } void _pthread_cleanup_pop(struct __ptcb *cb, int run) { - __do_cleanup_pop(cb, run); + __do_cleanup_pop(cb); if (run) cb->__f(cb->__x); } - -static void dummy() -{ -} -weak_alias(dummy, __do_cleanup_push); -weak_alias(dummy, __do_cleanup_pop); |