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:
@ -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
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Reference in New Issue
Block a user