blob: ca11b9ad77772b2272a2c7bb8eca0d0775306f8d (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#include <stdlib.h>
#include <stdint.h>
#include "libc.h"
#include "pthread_impl.h"
#include "atomic.h"
#include "syscall.h"
static void dummy()
{
}
/* atexit.c and __stdio_exit.c override these. the latter is linked
* as a consequence of linking either __toread.c or __towrite.c. */
weak_alias(dummy, __funcs_on_exit);
weak_alias(dummy, __stdio_exit);
weak_alias(dummy, _fini);
extern weak hidden void (*const __fini_array_start)(void), (*const __fini_array_end)(void);
static void libc_exit_fini(void)
{
uintptr_t a = (uintptr_t)&__fini_array_end;
for (; a>(uintptr_t)&__fini_array_start; a-=sizeof(void(*)()))
(*(void (**)())(a-sizeof(void(*)())))();
_fini();
}
weak_alias(libc_exit_fini, __libc_exit_fini);
_Noreturn void exit(int code)
{
/* Handle potentially concurrent or recursive calls to exit,
* whose behaviors have traditionally been undefined by the
* standards. Using a custom lock here avoids pulling in lock
* machinery and lets us trap recursive calls while supporting
* multiple threads contending to be the one to exit(). */
static volatile int exit_lock[1];
int tid = __pthread_self()->tid;
int prev = a_cas(exit_lock, 0, tid);
if (prev == tid) a_crash();
else if (prev) for (;;) __syscall(SYS_pause);
__funcs_on_exit();
__libc_exit_fini();
__stdio_exit();
_Exit(code);
}
|