diff options
author | Eric Andersen <andersen@codepoet.org> | 2006-12-08 03:19:36 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2006-12-08 03:19:36 +0000 |
commit | 7270c874630a097227a07891dd50bf8baefc3f07 (patch) | |
tree | 0ad9dcef07732a1623ba9a01062dbb9cd5f474f5 /include/libc-internal.h | |
parent | 7d5f81d30145f6ed1aede73491776371c7458c47 (diff) |
finish the pthread locking cleanups. This should get things compiling again
though I still need to silence the warnings about _pthread_cleanup_push_defer
Diffstat (limited to 'include/libc-internal.h')
-rw-r--r-- | include/libc-internal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/libc-internal.h b/include/libc-internal.h index 80bac2362..2f4f7fae3 100644 --- a/include/libc-internal.h +++ b/include/libc-internal.h @@ -56,6 +56,8 @@ extern char *__glibc_strerror_r (int __errnum, char *__buf, size_t __buflen); # define __pthread_mutex_lock(mutex) ((void)0) # define __pthread_mutex_trylock(mutex) ((void)0) # define __pthread_mutex_unlock(mutex) ((void)0) +# define _pthread_cleanup_push_defer(mutex) ((void)0) +# define _pthread_cleanup_pop_restore(mutex) ((void)0) # endif /* internal access to program name */ |