(pthread_cond_t): Add __data.__futex field, reshuffle __data.__clock.

This commit is contained in:
Ulrich Drepper 2004-06-03 15:57:42 +00:00
parent e0a27e2f47
commit 64d5339733

View File

@ -76,11 +76,12 @@ typedef union
struct
{
int __lock;
int __clock;
unsigned int __futex;
unsigned long long int __total_seq;
unsigned long long int __wakeup_seq;
unsigned long long int __woken_seq;
void *__mutex;
int __clock;
unsigned int __broadcast_seq;
} __data;
char __size[__SIZEOF_PTHREAD_COND_T];