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/internals.h | |
parent | db33f7d4aef7422140d5e19c440bb5e084fbe186 (diff) | |
download | glibc-0f5504179a2e37a20e409c48dcc8d640393cd16d.tar.gz glibc-0f5504179a2e37a20e409c48dcc8d640393cd16d.tar.xz glibc-0f5504179a2e37a20e409c48dcc8d640393cd16d.zip |
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/internals.h')
-rw-r--r-- | linuxthreads/internals.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linuxthreads/internals.h b/linuxthreads/internals.h index e41e5d3a72..3790efed3f 100644 --- a/linuxthreads/internals.h +++ b/linuxthreads/internals.h @@ -138,7 +138,7 @@ struct _pthread_descr_struct { pthread_t p_tid; /* Thread identifier */ int p_pid; /* PID of Unix process */ int p_priority; /* Thread priority (== 0 if not realtime) */ - pthread_spinlock_t * p_lock; /* Spinlock for synchronized accesses */ + struct _pthread_fastlock * p_lock; /* Spinlock for synchronized accesses */ int p_signal; /* last signal received */ sigjmp_buf * p_signal_jmp; /* where to siglongjmp on a signal or NULL */ sigjmp_buf * p_cancel_jmp; /* where to siglongjmp on a cancel or NULL */ @@ -189,7 +189,7 @@ struct _pthread_descr_struct { typedef struct pthread_handle_struct * pthread_handle; struct pthread_handle_struct { - pthread_spinlock_t h_lock; /* Fast lock for sychronized access */ + struct _pthread_fastlock h_lock; /* Fast lock for sychronized access */ pthread_descr h_descr; /* Thread descriptor or NULL if invalid */ char * h_bottom; /* Lowest address in the stack thread */ }; |