diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-03-16 16:25:00 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-03-16 16:25:00 -0400 |
commit | d4f9e0b3642a81d07c95302cd9aa0dcaf7de1a05 (patch) | |
tree | 8bb9017678027a5f7c0b461fc9e246d34d0ebd1d /src/thread/pthread_mutex_trylock.c | |
parent | 29fae65780f4c5ccda3758828da7a83073297ccc (diff) | |
download | musl-d4f9e0b3642a81d07c95302cd9aa0dcaf7de1a05.tar.gz musl-d4f9e0b3642a81d07c95302cd9aa0dcaf7de1a05.tar.xz musl-d4f9e0b3642a81d07c95302cd9aa0dcaf7de1a05.zip |
correct error returns for error-checking mutexes
Diffstat (limited to 'src/thread/pthread_mutex_trylock.c')
-rw-r--r-- | src/thread/pthread_mutex_trylock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thread/pthread_mutex_trylock.c b/src/thread/pthread_mutex_trylock.c index 2dad7bbf..25b9e869 100644 --- a/src/thread/pthread_mutex_trylock.c +++ b/src/thread/pthread_mutex_trylock.c @@ -11,7 +11,7 @@ int pthread_mutex_trylock(pthread_mutex_t *m) if (m->_m_owner == tid) { if (m->_m_type != PTHREAD_MUTEX_RECURSIVE) - return EDEADLK; + return EBUSY; if ((unsigned)m->_m_count >= INT_MAX) return EAGAIN; m->_m_count++; return 0; |