diff options
author | Roland McGrath <roland@gnu.org> | 2006-01-09 21:12:31 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2006-01-09 21:12:31 +0000 |
commit | 01a3f2ef185ed67d8d56cc1ba7ae5c862a31b7c6 (patch) | |
tree | 7b64daa62c0b3e3116523624a751d0fc4e6ebaa4 /nptl/sysdeps/unix/sysv/linux/x86_64 | |
parent | 49783c67c02d1c74fbc628c138bee025592a2652 (diff) | |
download | glibc-01a3f2ef185ed67d8d56cc1ba7ae5c862a31b7c6.tar glibc-01a3f2ef185ed67d8d56cc1ba7ae5c862a31b7c6.tar.gz glibc-01a3f2ef185ed67d8d56cc1ba7ae5c862a31b7c6.tar.bz2 glibc-01a3f2ef185ed67d8d56cc1ba7ae5c862a31b7c6.zip |
2006-01-09 Roland McGrath <roland@redhat.com>
* sysdeps/unix/sysv/linux/i386/bits/pthreadtypes.h (pthread_mutex_t):
Use __extension__ on anonymous union definition.
* sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h: Likewise.
* sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h: Likewise.
* sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h: Likewise.
* sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h: Likewise.
Diffstat (limited to 'nptl/sysdeps/unix/sysv/linux/x86_64')
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h b/nptl/sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h index ba940b35e0..81942bc86c 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h +++ b/nptl/sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h @@ -79,7 +79,7 @@ typedef union # define __PTHREAD_MUTEX_HAVE_PREV 1 #else unsigned int __nusers; - union + __extension__ union { int __spins; struct __pthread_mutex_s *__next; |