summaryrefslogtreecommitdiff
path: root/src/exit/exit.c
blob: ae557c090d1793220764dc413267a4e8e29c5e35 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>
#include "libc.h"

static void dummy()
{
}

/* __towrite.c and atexit.c override these */
weak_alias(dummy, __funcs_on_exit);
weak_alias(dummy, __fflush_on_exit);

void exit(int code)
{
	static int lock[2];

	/* If more than one thread calls exit, hang until _Exit ends it all */
	LOCK(lock);

	/* Only do atexit & stdio flush if they were actually used */
	__funcs_on_exit();
	__fflush_on_exit();

	/* Destructor s**t is kept separate from atexit to avoid bloat */
	if (libc.fini) libc.fini();
	if (libc.ldso_fini) libc.ldso_fini();

	_Exit(code);
	for(;;);
}