gthr-solaris.h (__gthread_recursive_mutex_init_function): Use 0 instead of NULL.

* gthr-solaris.h (__gthread_recursive_mutex_init_function): Use
	0 instead of NULL.

From-SVN: r91092
This commit is contained in:
Eric Botcazou 2004-11-23 15:40:23 +01:00 committed by Eric Botcazou
parent 405f403a09
commit 6d861604ae
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2004-11-23 Eric Botcazou <ebotcazou@libertysurf.fr>
* gthr-solaris.h (__gthread_recursive_mutex_init_function): Use
0 instead of NULL.
2004-11-23 Kazu Hirata <kazu@cs.umass.edu>
* tree-phinode.c (make_phi_node): Use a new variable,

View File

@ -478,7 +478,7 @@ __gthread_recursive_mutex_init_function (__gthread_recursive_mutex_t *mutex)
{
mutex->depth = 0;
mutex->owner = (thread_t) 0;
return mutex_init (&mutex->actual, USYNC_THREAD, NULL);
return mutex_init (&mutex->actual, USYNC_THREAD, 0);
}
static inline int