atexit.c 1.3 KB
Newer Older
R
Rich Felker 已提交
1 2
#include <stddef.h>
#include <stdlib.h>
3
#include <stdint.h>
R
Rich Felker 已提交
4 5 6 7 8 9 10 11 12
#include <limits.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;
13 14
	void (*f[COUNT])(void *);
	void *a[COUNT];
R
Rich Felker 已提交
15 16
} builtin, *head;

17 18
static int lock;

19
void __funcs_on_exit()
R
Rich Felker 已提交
20 21
{
	int i;
22 23
	void (*func)(void *), *arg;
	LOCK(&lock);
R
Rich Felker 已提交
24 25
	for (; head; head=head->next) {
		for (i=COUNT-1; i>=0 && !head->f[i]; i--);
26 27 28 29 30 31 32
		if (i<0) continue;
		func = head->f[i];
		arg = head->a[i];
		head->f[i] = 0;
		UNLOCK(&lock);
		func(arg);
		LOCK(&lock);
R
Rich Felker 已提交
33 34 35
	}
}

R
Rich Felker 已提交
36 37 38 39
void __cxa_finalize(void *dso)
{
}

40
int __cxa_atexit(void (*func)(void *), void *arg, void *dso)
R
Rich Felker 已提交
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
{
	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;
63
	head->a[i] = arg;
R
Rich Felker 已提交
64 65 66 67

	UNLOCK(&lock);
	return 0;
}
68 69 70 71 72 73 74 75 76 77

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

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