diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2012-08-30 23:48:39 +0200 |
---|---|---|
committer | Thomas Schwinge <thomas@codesourcery.com> | 2012-08-30 23:48:39 +0200 |
commit | a8b134d8c667b0105d7194a78f3fe478a3857302 (patch) | |
tree | 94da06519d2a623ce4e7aee21fd7b32ffecfea59 /pthread/cthreads-compat.c | |
parent | 013f554871c671f88942c9429720d3bb9a76c5ea (diff) | |
parent | 0096579c8bea920f7c42b40ea22db621da6480a5 (diff) |
Merge commit 'refs/top-bases/t/stand-alone' into t/stand-alonet/stand-alone
Conflicts:
Makefile.am
Diffstat (limited to 'pthread/cthreads-compat.c')
-rw-r--r-- | pthread/cthreads-compat.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pthread/cthreads-compat.c b/pthread/cthreads-compat.c index e0536ef..cbe8170 100644 --- a/pthread/cthreads-compat.c +++ b/pthread/cthreads-compat.c @@ -100,5 +100,8 @@ __mutex_lock_solid (void *lock) void __mutex_unlock_solid (void *lock) { + if (__pthread_spin_trylock (lock) != 0) + /* Somebody already got the lock, that one will manage waking up others */ + return; __pthread_mutex_unlock (lock); } |