exit.c\exit\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/exit/exit.c
blob: bfdb3923fc98b6f515d8cab5cf90dcba7de1b4f6 (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
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>
#include "libc.h"
/* __overflow.c and atexit.c override these */
static int (*const dummy)() = 0;
weak_alias(dummy, __funcs_on_exit);
weak_alias(dummy, __fflush_on_exit);
void exit(int code)
{
	static int lock;
	/* 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 */
	if (__funcs_on_exit) __funcs_on_exit();
	if (__fflush_on_exit) __fflush_on_exit((void *)0);
	/* 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(;;);
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年10月06日 20:25:16 +0000

AltStyle によって変換されたページ (->オリジナル) /