diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2007-01-20 19:52:56 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2007-01-20 19:52:56 +0000 |
commit | 60258bd2670e1aac497702bef2427318f3921641 (patch) | |
tree | 5e32ee3100161040575e79dd37b174d220e9246c /libpthread/linuxthreads.old/forward.c | |
parent | 7dfaf230d2191da71f3078943ea09d014298e7b0 (diff) | |
download | uClibc-alpine-60258bd2670e1aac497702bef2427318f3921641.tar.bz2 uClibc-alpine-60258bd2670e1aac497702bef2427318f3921641.tar.xz |
Merge from trunk.
Diffstat (limited to 'libpthread/linuxthreads.old/forward.c')
-rw-r--r-- | libpthread/linuxthreads.old/forward.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libpthread/linuxthreads.old/forward.c b/libpthread/linuxthreads.old/forward.c index 87101a15b..2cd019651 100644 --- a/libpthread/linuxthreads.old/forward.c +++ b/libpthread/linuxthreads.old/forward.c @@ -140,5 +140,7 @@ FORWARD (pthread_setcancelstate, (int state, int *oldstate), (state, oldstate), 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_push_defer, 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) +FORWARD2 (_pthread_cleanup_pop_restore, void, (struct _pthread_cleanup_buffer * buffer, int execute), (buffer, execute), return) |