patching file htl/Versions Hunk #1 FAILED at 187. 1 out of 1 hunk FAILED -- saving rejects to file htl/Versions.rej patching file sysdeps/htl/pthreadP.h Hunk #1 FAILED at 36. 1 out of 1 hunk FAILED -- saving rejects to file sysdeps/htl/pthreadP.h.rej patching file sysdeps/mach/hurd/htl/pt-mutex-lock.c Hunk #1 FAILED at 76. 1 out of 1 hunk FAILED -- saving rejects to file sysdeps/mach/hurd/htl/pt-mutex-lock.c.rej patching file sysdeps/mach/hurd/htl/pt-mutex-trylock.c Hunk #1 FAILED at 80. 1 out of 1 hunk FAILED -- saving rejects to file sysdeps/mach/hurd/htl/pt-mutex-trylock.c.rej patching file sysdeps/mach/hurd/htl/pt-mutex-unlock.c Hunk #1 FAILED at 87. 1 out of 1 hunk FAILED -- saving rejects to file sysdeps/mach/hurd/htl/pt-mutex-unlock.c.rej Reject file htl/Versions.rej: --- htl/Versions +++ htl/Versions @@ -187,6 +187,7 @@ libpthread { __pthread_enable_asynccancel; __pthread_disable_asynccancel; + __pthread_mutex_lock; __pthread_mutex_trylock; __pthread_mutex_unlock; _pthread_mutex_lock; _pthread_mutex_trylock; _pthread_mutex_unlock; _pthread_rwlock_destroy; _pthread_rwlock_init; } Reject file sysdeps/htl/pthreadP.h.rej: --- sysdeps/htl/pthreadP.h +++ sysdeps/htl/pthreadP.h @@ -36,10 +36,13 @@ extern struct __pthread **__pthread_threads; extern int __pthread_mutex_init (pthread_mutex_t *__mutex, const pthread_mutexattr_t *__attr); extern int __pthread_mutex_destroy (pthread_mutex_t *__mutex); extern int __pthread_mutex_lock (pthread_mutex_t *__mutex); +hidden_proto (__pthread_mutex_lock) extern int __pthread_mutex_trylock (pthread_mutex_t *_mutex); +hidden_proto (__pthread_mutex_trylock) extern int __pthread_mutex_timedlock (pthread_mutex_t *__mutex, const struct timespec *__abstime); extern int __pthread_mutex_unlock (pthread_mutex_t *__mutex); +hidden_proto (__pthread_mutex_unlock) extern int __pthread_mutexattr_init (pthread_mutexattr_t *attr); extern int __pthread_mutexattr_settype (pthread_mutexattr_t *attr, int kind); Reject file sysdeps/mach/hurd/htl/pt-mutex-lock.c.rej: --- sysdeps/mach/hurd/htl/pt-mutex-lock.c +++ sysdeps/mach/hurd/htl/pt-mutex-lock.c @@ -76,5 +76,6 @@ __pthread_mutex_lock (pthread_mutex_t *mtxp) return ret; } +hidden_def (__pthread_mutex_lock) strong_alias (__pthread_mutex_lock, _pthread_mutex_lock) weak_alias (__pthread_mutex_lock, pthread_mutex_lock) Reject file sysdeps/mach/hurd/htl/pt-mutex-trylock.c.rej: --- sysdeps/mach/hurd/htl/pt-mutex-trylock.c +++ sysdeps/mach/hurd/htl/pt-mutex-trylock.c @@ -80,5 +80,6 @@ __pthread_mutex_trylock (pthread_mutex_t *mtxp) return ret; } +hidden_def (__pthread_mutex_trylock) strong_alias (__pthread_mutex_trylock, _pthread_mutex_trylock) weak_alias (__pthread_mutex_trylock, pthread_mutex_trylock) Reject file sysdeps/mach/hurd/htl/pt-mutex-unlock.c.rej: --- sysdeps/mach/hurd/htl/pt-mutex-unlock.c +++ sysdeps/mach/hurd/htl/pt-mutex-unlock.c @@ -87,5 +87,6 @@ __pthread_mutex_unlock (pthread_mutex_t *mtxp) return ret; } +hidden_def (__pthread_mutex_unlock) strong_alias (__pthread_mutex_unlock, _pthread_mutex_unlock) weak_alias (__pthread_mutex_unlock, pthread_mutex_unlock)