2010-05-11 Jeff Johnston <jjohnstn@redhat.com>
* libc/stdlib/__call_atexit.c: Fix lock to be of type _LOCK_RECURSIVE_T as recursive usage is needed.
This commit is contained in:
parent
60bdafbbda
commit
ca52bf1705
|
@ -1,3 +1,8 @@
|
||||||
|
2010-05-11 Jeff Johnston <jjohnstn@redhat.com>
|
||||||
|
|
||||||
|
* libc/stdlib/__call_atexit.c: Fix lock to be of type
|
||||||
|
_LOCK_RECURSIVE_T as recursive usage is needed.
|
||||||
|
|
||||||
2010-05-11 Jeff Johnston <jjohnstn@redhat.com>
|
2010-05-11 Jeff Johnston <jjohnstn@redhat.com>
|
||||||
|
|
||||||
* libc/locale/locale.c (loadlocale): Fix dangling
|
* libc/locale/locale.c (loadlocale): Fix dangling
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
void free(void *) _ATTRIBUTE((__weak__));
|
void free(void *) _ATTRIBUTE((__weak__));
|
||||||
|
|
||||||
#ifndef __SINGLE_THREAD__
|
#ifndef __SINGLE_THREAD__
|
||||||
extern _LOCK_T __atexit_lock;
|
extern _LOCK_RECURSIVE_T __atexit_lock;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue