diff options
Diffstat (limited to 'src/thread/pthread_mutex_unlock.c')
-rw-r--r-- | src/thread/pthread_mutex_unlock.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/thread/pthread_mutex_unlock.c b/src/thread/pthread_mutex_unlock.c index 46761d9a..a7f39c7f 100644 --- a/src/thread/pthread_mutex_unlock.c +++ b/src/thread/pthread_mutex_unlock.c @@ -3,7 +3,7 @@ void __vm_lock_impl(int); void __vm_unlock_impl(void); -int pthread_mutex_unlock(pthread_mutex_t *m) +int __pthread_mutex_unlock(pthread_mutex_t *m) { pthread_t self; int waiters = m->_m_waiters; @@ -36,3 +36,5 @@ int pthread_mutex_unlock(pthread_mutex_t *m) __wake(&m->_m_lock, 1, priv); return 0; } + +weak_alias(__pthread_mutex_unlock, pthread_mutex_unlock); |