mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 08:10:26 +08:00
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:
parent
405f403a09
commit
6d861604ae
@ -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,
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user