mailing list of musl libc
 help / color / mirror / code / Atom feed
a0fd8d7d88c16ea19e584c062daed39b2c7ad02a blob 1391 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
 
#include <stdlib.h>
#include <stdint.h>
#include "libc.h"

/* Ensure that at least 32 atexit handlers can be registered without malloc */
#define COUNT 32

static struct fl
{
	struct fl *next;
	void (*f[COUNT])(void *);
	void *a[COUNT];
} builtin, *head;

static volatile int lock[2];

static int next()
{
	int i;
	for (; head; head=head->next)
		for (i=COUNT-1; i>=0; i--)
			if (head->f[i])
				return i;
	return -1;
}

void __funcs_on_exit()
{
	int i;
	void (*func)(void *), *arg;
	LOCK(lock);
	for (;;) {
		i = next();
		if (i<0) break;
		func = head->f[i];
		arg = head->a[i];
		head->f[i] = 0;
		UNLOCK(lock);
		func(arg);
		LOCK(lock);
	}
}

void __cxa_finalize(void *dso)
{
}

int __cxa_atexit(void (*func)(void *), void *arg, void *dso)
{
	int i;

	LOCK(lock);

	/* Defer initialization of head so it can be in BSS */
	if (!head) head = &builtin;

	/* If the current function list is full, add a new one */
	if (head->f[COUNT-1]) {
		struct fl *new_fl = calloc(sizeof(struct fl), 1);
		if (!new_fl) {
			UNLOCK(lock);
			return -1;
		}
		new_fl->next = head;
		head = new_fl;
	}

	/* Append function to the list. */
	for (i=0; i<COUNT && head->f[i]; i++);
	head->f[i] = func;
	head->a[i] = arg;

	UNLOCK(lock);
	return 0;
}

static void call(void *p)
{
	((void (*)(void))(uintptr_t)p)();
}

int atexit(void (*func)(void))
{
	return __cxa_atexit(call, (void *)(uintptr_t)func, 0);
}
debug log:

solving a0fd8d7 ...
found a0fd8d7 in https://inbox.vuxu.org/musl/20150722234406.GA382@port70.net/
found be82718 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 be8271811ead741349879fa41f96ab1a01f9d0cf	src/exit/atexit.c

applying [1/1] https://inbox.vuxu.org/musl/20150722234406.GA382@port70.net/
diff --git a/src/exit/atexit.c b/src/exit/atexit.c
index be82718..a0fd8d7 100644

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

index at:
100644 a0fd8d7d88c16ea19e584c062daed39b2c7ad02a	src/exit/atexit.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).