mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-27 19:53:32 +08:00
Fix pthread_cond_t on sparc for new condvar.
* sysdeps/sparc/nptl/bits/pthreadtypes.h (pthread_cond_t): Adapt to new condvar.
This commit is contained in:
parent
dcf83b54ab
commit
62210e7eb1
@ -1,3 +1,8 @@
|
||||
2017-01-02 Torvald Riegel <triegel@redhat.com>
|
||||
|
||||
* sysdeps/sparc/nptl/bits/pthreadtypes.h (pthread_cond_t): Adapt to
|
||||
new condvar.
|
||||
|
||||
2017-01-02 Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
* scripts/build-many-glibcs.py (Context.checkout): Default
|
||||
|
@ -122,14 +122,27 @@ typedef union
|
||||
{
|
||||
struct
|
||||
{
|
||||
int __lock;
|
||||
unsigned int __futex;
|
||||
__extension__ unsigned long long int __total_seq;
|
||||
__extension__ unsigned long long int __wakeup_seq;
|
||||
__extension__ unsigned long long int __woken_seq;
|
||||
void *__mutex;
|
||||
unsigned int __nwaiters;
|
||||
unsigned int __broadcast_seq;
|
||||
__extension__ union
|
||||
{
|
||||
__extension__ unsigned long long int __wseq;
|
||||
struct {
|
||||
unsigned int __low;
|
||||
unsigned int __high;
|
||||
} __wseq32;
|
||||
};
|
||||
__extension__ union
|
||||
{
|
||||
__extension__ unsigned long long int __g1_start;
|
||||
struct {
|
||||
unsigned int __low;
|
||||
unsigned int __high;
|
||||
} __g1_start32;
|
||||
};
|
||||
unsigned int __g_refs[2];
|
||||
unsigned int __g_size[2];
|
||||
unsigned int __g1_orig_size;
|
||||
unsigned int __wrefs;
|
||||
unsigned int __g_signals[2];
|
||||
} __data;
|
||||
char __size[__SIZEOF_PTHREAD_COND_T];
|
||||
__extension__ long long int __align;
|
||||
|
Loading…
Reference in New Issue
Block a user