about summary refs log tree commit diff
path: root/linuxthreads
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2001-01-27 06:30:48 +0000
committerUlrich Drepper <drepper@redhat.com>2001-01-27 06:30:48 +0000
commit5a9339d5bb8bdffa8f91099430ec518ec98027de (patch)
treec4b913599ac1738b2b3874ef02fcad093fef1190 /linuxthreads
parentda23829807c8e5f4c5a179a3fa693250f9d7f6c1 (diff)
downloadglibc-5a9339d5bb8bdffa8f91099430ec518ec98027de.tar.gz
glibc-5a9339d5bb8bdffa8f91099430ec518ec98027de.tar.xz
glibc-5a9339d5bb8bdffa8f91099430ec518ec98027de.zip
Update.
	* conform/conformtest.pl: Define $mustprepend{"signal.h"}.
	* conform/data/signal.h-data: Fix sigev_notify_function entry.
	Fix typo (SIGVALRM -> SIGVTALRM).
	* sysdeps/unix/sysv/linux/bits/siginfo.h: Define sigev_notify_attr
	with real type.
	* sysdeps/unix/sysv/linux/alpha/bits/siginfo.h: Likewise.
	* sysdeps/unix/sysv/linux/ia64/bits/siginfo.h: Likewise.
	* sysdeps/unix/sysv/linux/mips/bits/siginfo.h: Likewise.
	* sysdeps/unix/sysv/linux/sparc/bits/siginfo.h: Likewise.
	* sysdeps/unix/sysv/linux/sparc/sparc64/bits/siginfo.h: Likewise.
Diffstat (limited to 'linuxthreads')
-rw-r--r--linuxthreads/semaphore.h4
-rw-r--r--linuxthreads/sysdeps/pthread/bits/pthreadtypes.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/linuxthreads/semaphore.h b/linuxthreads/semaphore.h
index f611f48323..fa0e52ddeb 100644
--- a/linuxthreads/semaphore.h
+++ b/linuxthreads/semaphore.h
@@ -33,8 +33,8 @@ typedef struct
 {
   struct
   {
-    long int status;
-    int spinlock;
+    long int __status;
+    int __spinlock;
   } __sem_lock;
   int __sem_value;
   _pthread_descr __sem_waiting;
diff --git a/linuxthreads/sysdeps/pthread/bits/pthreadtypes.h b/linuxthreads/sysdeps/pthread/bits/pthreadtypes.h
index 2bb661fea3..3ee5c48134 100644
--- a/linuxthreads/sysdeps/pthread/bits/pthreadtypes.h
+++ b/linuxthreads/sysdeps/pthread/bits/pthreadtypes.h
@@ -38,7 +38,7 @@ typedef struct _pthread_descr_struct *_pthread_descr;
 
 
 /* Attributes for threads.  */
-typedef struct
+typedef struct __pthread_attr_s
 {
   int __detachstate;
   int __schedpolicy;