diff options
Diffstat (limited to 'src/thread/pthread_mutex_trylock.c')
-rw-r--r-- | src/thread/pthread_mutex_trylock.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/thread/pthread_mutex_trylock.c b/src/thread/pthread_mutex_trylock.c index e8515179..cb935651 100644 --- a/src/thread/pthread_mutex_trylock.c +++ b/src/thread/pthread_mutex_trylock.c @@ -50,9 +50,11 @@ int __pthread_mutex_trylock_owner(pthread_mutex_t *m) return 0; } -int pthread_mutex_trylock(pthread_mutex_t *m) +int __pthread_mutex_trylock(pthread_mutex_t *m) { if ((m->_m_type&15) == PTHREAD_MUTEX_NORMAL) return a_cas(&m->_m_lock, 0, EBUSY) & EBUSY; return __pthread_mutex_trylock_owner(m); } + +weak_alias(__pthread_mutex_trylock, pthread_mutex_trylock); |