summaryrefslogtreecommitdiff
path: root/src/thread/pthread_create.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-05-23 14:13:54 -0400
committerRich Felker <dalias@aerifal.cx>2012-05-23 14:13:54 -0400
commitcfd892fde9454e014d9b291a56ce5740d8bc4a78 (patch)
tree25549d8ed33ff5205961084435b51849cc15f9e6 /src/thread/pthread_create.c
parent25d575edc494e5a519468889e62beea4dde186ea (diff)
downloadmusl-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/pthread_create.c')
-rw-r--r--src/thread/pthread_create.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/thread/pthread_create.c b/src/thread/pthread_create.c
index 917be54f..ecf93a46 100644
--- a/src/thread/pthread_create.c
+++ b/src/thread/pthread_create.c
@@ -43,14 +43,14 @@ void pthread_exit(void *result)
__syscall(SYS_exit, 0);
}
-void __do_cleanup_push(struct __ptcb *cb, void (*f)(void *), void *x)
+void __do_cleanup_push(struct __ptcb *cb)
{
struct pthread *self = pthread_self();
cb->__next = self->cancelbuf;
self->cancelbuf = cb;
}
-void __do_cleanup_pop(struct __ptcb *cb, int run)
+void __do_cleanup_pop(struct __ptcb *cb)
{
__pthread_self()->cancelbuf = cb->__next;
}