diff options
Diffstat (limited to 'linuxthreads/forward.c')
-rw-r--r-- | linuxthreads/forward.c | 4 |
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) |