1
0
Fork 0
mirror of https://gitlab.com/sortix/sortix.git synced 2023-02-13 20:55:38 -05:00

Thread-secure exit(3).

This commit is contained in:
Jonas 'Sortie' Termansen 2013-09-01 19:17:52 +02:00
parent a96aca09c1
commit e1db06c1c9

View file

@ -23,18 +23,29 @@
*******************************************************************************/
#include <dirent.h>
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
extern "C" { struct exit_handler* __exit_handler_stack = NULL; }
static pthread_mutex_t exit_lock = PTHREAD_MUTEX_INITIALIZER;
extern "C" void exit(int status)
{
// Only allow a single thread to do the exit cleanup. If somehow the cleanup
// code calls exit, then we'll self-destruct. If multiple threads attempt to
// call exit, then we'll destroy the ones that got here too late.
if ( pthread_mutex_trylock(&exit_lock) != 0 )
exit_thread(status, 0, NULL);
while ( __exit_handler_stack )
{
__exit_handler_stack->hook(status, __exit_handler_stack->param);
__exit_handler_stack = __exit_handler_stack->next;
}
dcloseall();
fcloseall();
_Exit(status);