2012-01-03 Viachaslau Kulakouski <Viachaslau.Kulakouski@oracle.com>

* libc/stdlib/__atexit.c: Refer to __atexit_lock instead of lock.
This commit is contained in:
Jeff Johnston 2012-01-03 19:13:57 +00:00
parent 2a4b36abb7
commit 286625cf91
2 changed files with 7 additions and 3 deletions

View File

@ -1,7 +1,11 @@
2012-01-03 Viachaslau Kulakouski <Viachaslau.Kulakouski@oracle.com>
* libc/stdlib/__atexit.c: Refer to __atexit_lock instead of lock.
2011-12-20 Aleksandr Platonov <pam@oktetlabs.ru>
* fvwrite.c (__sfvwrite_r): Set __SMBF flag to avoid double free in
fclose. Enhance comment.
* libc/stdio/fvwrite.c (__sfvwrite_r): Set __SMBF flag to avoid double
free in fclose. Enhance comment.
2011-12-19 Jeff Johnston <jjohnstn@redhat.com>

View File

@ -74,7 +74,7 @@ _DEFUN (__register_exitproc,
if (args == NULL)
{
#ifndef __SINGLE_THREAD__
__lock_release(lock);
__lock_release(__atexit_lock);
#endif
return -1;
}