about summary refs log tree commit diff
path: root/nptl/sysdeps/unix/sysv/linux/sparc
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2006-01-09 23:38:27 +0000
committerRoland McGrath <roland@gnu.org>2006-01-09 23:38:27 +0000
commit33678adb3b667cf4df38970004529fe14c93b4d7 (patch)
tree54ec6f035f48aaac543ba6d4ebed7ebbeed96d1a /nptl/sysdeps/unix/sysv/linux/sparc
parent8ff16245229f80719c82f6e9b45b13016ae799fd (diff)
downloadglibc-33678adb3b667cf4df38970004529fe14c93b4d7.tar.gz
glibc-33678adb3b667cf4df38970004529fe14c93b4d7.tar.xz
glibc-33678adb3b667cf4df38970004529fe14c93b4d7.zip
2006-01-08 Jakub Jelinek <jakub@redhat.com>
	* sysdeps/unix/sysv/linux/alpha/bits/pthreadtypes.h (pthread_mutex_t):
	Don't give the union a name because it changes the mangled name.
	Instead name the struct for __data.
	* sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h (pthread_mutex_t):
	Likewise.
	* sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h (pthread_mutex_t):
	Likewise.
Diffstat (limited to 'nptl/sysdeps/unix/sysv/linux/sparc')
-rw-r--r--nptl/sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/nptl/sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h b/nptl/sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h
index e948ca10a8..7dc61c12e1 100644
--- a/nptl/sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h
+++ b/nptl/sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h
@@ -60,9 +60,9 @@ typedef union
 
 /* Data structures for mutex handling.  The structure of the attribute
    type is deliberately not exposed.  */
-typedef union __pthread_mutex_u
+typedef union
 {
-  struct
+  struct __pthread_mutex_s
   {
     int __lock;
     unsigned int __count;
@@ -75,15 +75,15 @@ typedef union __pthread_mutex_u
     int __kind;
 #if __WORDSIZE == 64
     int __spins;
-    union __pthread_mutex_u *__next;
-    union __pthread_mutex_u *__prev;
+    struct __pthread_mutex_s *__next;
+    struct __pthread_mutex_s *__prev;
 # define __PTHREAD_MUTEX_HAVE_PREV	1
 #else
     unsigned int __nusers;
     __extension__ union
     {
       int __spins;
-      union __pthread_mutex_u *__next;
+      struct __pthread_mutex_s *__next;
     };
 #endif
   } __data;