diff options
Diffstat (limited to 'linuxthreads/spinlock.h')
-rw-r--r-- | linuxthreads/spinlock.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/linuxthreads/spinlock.h b/linuxthreads/spinlock.h index aae18a27b4..0b4ed9d9d2 100644 --- a/linuxthreads/spinlock.h +++ b/linuxthreads/spinlock.h @@ -50,17 +50,17 @@ static inline int compare_and_swap(long * ptr, long oldval, long newval, /* Internal locks */ -extern void internal_function __pthread_lock(struct _pthread_fastlock * lock, +extern void internal_function __pthread_lock(pthread_spinlock_t * lock, pthread_descr self); -extern void internal_function __pthread_unlock(struct _pthread_fastlock *lock); +extern int __pthread_spin_unlock(pthread_spinlock_t *lock); -static inline void __pthread_init_lock(struct _pthread_fastlock * lock) +static inline void __pthread_init_lock(pthread_spinlock_t * lock) { lock->__status = 0; lock->__spinlock = 0; } -static inline int __pthread_trylock (struct _pthread_fastlock * lock) +static inline int __pthread_trylock (pthread_spinlock_t * lock) { long oldstatus; @@ -99,4 +99,3 @@ static inline long atomic_decrement(struct pthread_atomic *pa) } #define ATOMIC_INITIALIZER { 0, 0 } - |