diff options
Diffstat (limited to 'libpthread/linuxthreads')
| -rw-r--r-- | libpthread/linuxthreads/spinlock.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/libpthread/linuxthreads/spinlock.c b/libpthread/linuxthreads/spinlock.c index c0e7a368f..cdf45f195 100644 --- a/libpthread/linuxthreads/spinlock.c +++ b/libpthread/linuxthreads/spinlock.c @@ -108,7 +108,7 @@ void internal_function __pthread_lock(struct _pthread_fastlock * lock,  #ifdef BUSY_WAIT_NOP        BUSY_WAIT_NOP;  #endif -      __asm __volatile ("" : "=m" (lock->__status) : "0" (lock->__status)); +      __asm __volatile ("" : "=m" (lock->__status) : "m" (lock->__status));      }      lock->__spinlock += (spin_count - lock->__spinlock) / 8; | 
