diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-05-25 06:15:25 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-05-25 06:15:25 +0000 |
commit | 0f5504179a2e37a20e409c48dcc8d640393cd16d (patch) | |
tree | 5e61a218eacec17393a6688dab8bb0e59943592b /linuxthreads/spinlock.h | |
parent | db33f7d4aef7422140d5e19c440bb5e084fbe186 (diff) | |
download | glibc-0f5504179a2e37a20e409c48dcc8d640393cd16d.zip glibc-0f5504179a2e37a20e409c48dcc8d640393cd16d.tar.gz glibc-0f5504179a2e37a20e409c48dcc8d640393cd16d.tar.bz2 |
Update.
2000-05-23 Jakub Jelinek <jakub@redhat.com>
* sysdeps/i386/fpu/bits/mathinline.h (__sincos, __sincosf,
__sincosl): Guard with __USE_GNU.
Diffstat (limited to 'linuxthreads/spinlock.h')
-rw-r--r-- | linuxthreads/spinlock.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/linuxthreads/spinlock.h b/linuxthreads/spinlock.h index 0b4ed9d..96010e4 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(pthread_spinlock_t * lock, +extern void internal_function __pthread_lock(struct _pthread_fastlock * lock, pthread_descr self); -extern int __pthread_spin_unlock(pthread_spinlock_t *lock); +extern int __pthread_unlock(struct _pthread_fastlock *lock); -static inline void __pthread_init_lock(pthread_spinlock_t * lock) +static inline void __pthread_init_lock(struct _pthread_fastlock * lock) { lock->__status = 0; lock->__spinlock = 0; } -static inline int __pthread_trylock (pthread_spinlock_t * lock) +static inline int __pthread_trylock (struct _pthread_fastlock * lock) { long oldstatus; |