From 87cf76569873bac4c8874e2fa85c55f33c70eb24 Mon Sep 17 00:00:00 2001 From: apbianco <apbianco@138bc75d-0d04-0410-961f-82ee72b054a4> Date: Sat, 19 May 2001 05:43:00 +0000 Subject: [PATCH] 2001-05-18 Alexandre Petit-Bianco <apbianco@redhat.com> * include/posix-threads.h (_Jv_CondInit): `0' used in place of `NULL.' (_Jv_MutexInit): Likewise. (http://gcc.gnu.org/ml/java-patches/2001-q2/msg00245.html ) git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@42303 138bc75d-0d04-0410-961f-82ee72b054a4 --- libjava/ChangeLog | 5 +++++ libjava/include/posix-threads.h | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/libjava/ChangeLog b/libjava/ChangeLog index e3879010269b..793617153ef3 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,3 +1,8 @@ +2001-05-18 Alexandre Petit-Bianco <apbianco@redhat.com> + + * include/posix-threads.h (_Jv_CondInit): `0' used in place of `NULL.' + (_Jv_MutexInit): Likewise. + 2001-05-18 Tom Tromey <tromey@redhat.com> * Makefile.in: Rebuilt. diff --git a/libjava/include/posix-threads.h b/libjava/include/posix-threads.h index 75285ca6f50a..ca4bfa6ad4bd 100644 --- a/libjava/include/posix-threads.h +++ b/libjava/include/posix-threads.h @@ -99,7 +99,7 @@ int _Jv_CondNotifyAll (_Jv_ConditionVariable_t *cv, _Jv_Mutex_t *mu); inline void _Jv_CondInit (_Jv_ConditionVariable_t *cv) { - cv->first = NULL; + cv->first = 0; } // @@ -109,7 +109,7 @@ _Jv_CondInit (_Jv_ConditionVariable_t *cv) inline void _Jv_MutexInit (_Jv_Mutex_t *mu) { - pthread_mutex_init (&mu->mutex, NULL); + pthread_mutex_init (&mu->mutex, 0); mu->count = 0; mu->owner = 0; -- GitLab