summaryrefslogtreecommitdiff
path: root/linuxthreads/forward.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2003-09-23 04:41:29 +0000
committerUlrich Drepper <drepper@redhat.com>2003-09-23 04:41:29 +0000
commit571f2090f876fee3eb99fd141d6595e6bc45549c (patch)
tree754b93812c920bb3c3a5e62e4c092d80baa74825 /linuxthreads/forward.c
parent365b16029b0a6645fac11ff61de21ca0d23d223f (diff)
Update.
2003-09-22 Philip Blundell <philb@gnu.org> * forward.c: Add _pthread_cleanup_push, _pthread_cleanup_pop. * sysdeps/pthread/pthread-functions.h (struct pthread_functions): Likewise. * pthread.c (__pthread_elements): Initialise these new elements. * sysdeps/pthread/bits/libc-lock.h (__libc_cleanup_push): Use __libc_maybe_call. (__libc_cleanup_pop): Likewise.
Diffstat (limited to 'linuxthreads/forward.c')
-rw-r--r--linuxthreads/forward.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/linuxthreads/forward.c b/linuxthreads/forward.c
index 46cf53893e..b2a36d7d60 100644
--- a/linuxthreads/forward.c
+++ b/linuxthreads/forward.c
@@ -173,3 +173,7 @@ FORWARD (pthread_setcancelstate, (int state, int *oldstate), (state, oldstate),
0)
FORWARD (pthread_setcanceltype, (int type, int *oldtype), (type, oldtype), 0)
+
+FORWARD2 (_pthread_cleanup_push, void, (struct _pthread_cleanup_buffer * buffer, void (*routine)(void *), void * arg), (buffer, routine, arg), return)
+
+FORWARD2 (_pthread_cleanup_pop, void, (struct _pthread_cleanup_buffer * buffer, int execute), (buffer, execute), return)