mailing list of musl libc
 help / color / mirror / code / Atom feed
a866e02e007efc2e65f194fdfc9c889975b54871 blob 667 bytes (raw)

 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
 
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>
#include "libc.h"
#include "atomic.h"
#include "syscall.h"

/* __toread.c, __towrite.c, and atexit.c override these */
WEAK_PROVIDE_VOID;
weak_alias(__weak_dummy_void, __funcs_on_exit);
weak_alias(__weak_dummy_void, __flush_on_exit);
weak_alias(__weak_dummy_void, __seek_on_exit);

_Noreturn void exit(int code)
{
	static int lock;

	/* If more than one thread calls exit, hang until _Exit ends it all */
	while (a_swap(&lock, 1)) __syscall(SYS_pause);

	__funcs_on_exit();
	if (libc.fini) libc.fini();
	if (libc.ldso_fini) libc.ldso_fini();
	__flush_on_exit();
	__seek_on_exit();

	_Exit(code);
	for(;;);
}
debug log:

solving a866e02 ...
found a866e02 in https://inbox.vuxu.org/musl/fef8bbf759787cabc4ffd61c4e3357bc11112f8b.1360968989.git.Jens.Gustedt@inria.fr/
found e4932b5 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 e4932b5b229a9708e23a6e409082562da58f11ab	src/exit/exit.c

applying [1/1] https://inbox.vuxu.org/musl/fef8bbf759787cabc4ffd61c4e3357bc11112f8b.1360968989.git.Jens.Gustedt@inria.fr/
diff --git a/src/exit/exit.c b/src/exit/exit.c
index e4932b5..a866e02 100644

Checking patch src/exit/exit.c...
Applied patch src/exit/exit.c cleanly.

index at:
100644 a866e02e007efc2e65f194fdfc9c889975b54871	src/exit/exit.c

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).