From b98a450f59444c16616416fa650d1686a72e1768 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Wed, 26 Jul 2000 10:06:18 +0000 Subject: Initialize p_sem_avail. 2000-07-26 Andreas Jaeger * pthread.c: Initialize p_sem_avail. --- linuxthreads/pthread.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'linuxthreads/pthread.c') diff --git a/linuxthreads/pthread.c b/linuxthreads/pthread.c index 7195b2dedc..41fbdc0f24 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; */ -- cgit 1.4.1