Commit 6d861604 by Eric Botcazou Committed by Eric Botcazou

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
parent 405f403a
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,
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment