From: Andreas Jaeger Date: Thu, 6 Jan 2000 09:37:15 +0000 (+0000) Subject: 2000-01-06 Andreas Jaeger X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6154bf41708b23626b42c9136723970ded2e5109;p=thirdparty%2Fglibc.git 2000-01-06 Andreas Jaeger * pthread.c: Correct last patch: Remove extra initializers. --- diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog index 32e09a1e9d9..fb1b5b61c0c 100644 --- a/linuxthreads/ChangeLog +++ b/linuxthreads/ChangeLog @@ -1,3 +1,7 @@ +2000-01-06 Andreas Jaeger + + * pthread.c: Remove extra initializer. + 2000-01-05 Ulrich Drepper * pthread.c (__pthread_initial_thread, pthread_manager_thread): diff --git a/linuxthreads/pthread.c b/linuxthreads/pthread.c index bb2e7d98527..1db764b6fb3 100644 --- a/linuxthreads/pthread.c +++ b/linuxthreads/pthread.c @@ -87,7 +87,6 @@ struct _pthread_descr_struct __pthread_manager_thread = { 0, /* int p_priority */ &__pthread_handles[1].h_lock, /* struct _pthread_fastlock * p_lock */ 0, /* int p_signal */ - ATOMIC_INITIALIZER, /* struct pthread_atomic p_resume_count */ NULL, /* sigjmp_buf * p_signal_buf */ NULL, /* sigjmp_buf * p_cancel_buf */ 0, /* char p_terminated */ @@ -100,8 +99,6 @@ struct _pthread_descr_struct __pthread_manager_thread = { 0, /* char p_cancelstate */ 0, /* char p_canceltype */ 0, /* char p_canceled */ - 0, /* char p_woken_by_cancel */ - NULL, /* struct pthread_extricate_if *p_extricate */ &__pthread_manager_thread.p_errno, /* int *p_errnop */ 0, /* int p_errno */ NULL, /* int *p_h_errnop */