diff options
| author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2006-01-14 19:32:10 +0000 |
|---|---|---|
| committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2006-01-14 19:32:10 +0000 |
| commit | 821b26bf3fe22524a1d1a2c9bc60ad549de82333 (patch) | |
| tree | 0dc5c690f89b55f1156bcba1b15ee382e4242714 /libc/misc/pthread/weaks.c | |
| parent | a979d4016db090191fe7ed167d85870338e64604 (diff) | |
| download | uClibc-alpine-821b26bf3fe22524a1d1a2c9bc60ad549de82333.tar.bz2 uClibc-alpine-821b26bf3fe22524a1d1a2c9bc60ad549de82333.tar.xz | |
Get rid of more glibc NPTL symbol and alias madness. Also disable usage of
'libc/sysdeps/linux/common/fork.c' when NPTL is being used. Finally, there
are additional weak functions that need to be defined when using NPTL which
have also been added.
Diffstat (limited to 'libc/misc/pthread/weaks.c')
| -rw-r--r-- | libc/misc/pthread/weaks.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libc/misc/pthread/weaks.c b/libc/misc/pthread/weaks.c index 20a98a3fe..e08812796 100644 --- a/libc/misc/pthread/weaks.c +++ b/libc/misc/pthread/weaks.c @@ -36,3 +36,8 @@ weak_alias (__pthread_return_0, __pthread_mutex_init) weak_alias (__pthread_return_0, __pthread_mutex_lock) weak_alias (__pthread_return_0, __pthread_mutex_trylock) weak_alias (__pthread_return_0, __pthread_mutex_unlock) +#ifdef __UCLIBC_HAS_THREADS_NATIVE__ +weak_alias (__pthread_return_0, __pthread_mutexattr_init) +weak_alias (__pthread_return_0, __pthread_mutexattr_destroy) +weak_alias (__pthread_return_0, __pthread_mutexattr_settype) +#endif |
