aboutsummaryrefslogtreecommitdiff
path: root/linuxthreads
diff options
context:
space:
mode:
Diffstat (limited to 'linuxthreads')
-rw-r--r--linuxthreads/ChangeLog4
-rw-r--r--linuxthreads/pthread.c2
2 files changed, 6 insertions, 0 deletions
diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog
index 83be97f..88549fd 100644
--- a/linuxthreads/ChangeLog
+++ b/linuxthreads/ChangeLog
@@ -1,3 +1,7 @@
+2000-07-26 Andreas Jaeger <aj@suse.de>
+
+ * pthread.c: Initialize p_sem_avail.
+
2000-07-25 Ulrich Drepper <drepper@redhat.com>
* internals.h (struct __pthread_descr_struct): Add p_sem_avail.
diff --git a/linuxthreads/pthread.c b/linuxthreads/pthread.c
index 7195b2d..41fbdc0 100644
--- a/linuxthreads/pthread.c
+++ b/linuxthreads/pthread.c
@@ -89,6 +89,7 @@ struct _pthread_descr_struct __pthread_initial_thread = {
ATOMIC_INITIALIZER, /* struct pthread_atomic p_resume_count */
0, /* char p_woken_by_cancel */
0, /* char p_condvar_avail */
+ 0, /* char p_sem_avail */
NULL, /* struct pthread_extricate_if *p_extricate */
NULL, /* pthread_readlock_info *p_readlock_list; */
NULL, /* pthread_readlock_info *p_readlock_free; */
@@ -145,6 +146,7 @@ struct _pthread_descr_struct __pthread_manager_thread = {
ATOMIC_INITIALIZER, /* struct pthread_atomic p_resume_count */
0, /* char p_woken_by_cancel */
0, /* char p_condvar_avail */
+ 0, /* char p_sem_avail */
NULL, /* struct pthread_extricate_if *p_extricate */
NULL, /* pthread_readlock_info *p_readlock_list; */
NULL, /* pthread_readlock_info *p_readlock_free; */