summaryrefslogtreecommitdiff
path: root/src/lib/libc/stdlib/thread_atexit.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libc/stdlib/thread_atexit.c')
-rw-r--r--src/lib/libc/stdlib/thread_atexit.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/lib/libc/stdlib/thread_atexit.c b/src/lib/libc/stdlib/thread_atexit.c
index 2e00428eba..ef0423c428 100644
--- a/src/lib/libc/stdlib/thread_atexit.c
+++ b/src/lib/libc/stdlib/thread_atexit.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: thread_atexit.c,v 1.1 2017/12/16 20:06:56 guenther Exp $ */ 1/* $OpenBSD: thread_atexit.c,v 1.2 2019/06/02 01:03:01 guenther Exp $ */
2/* 2/*
3 * Copyright (c) 2017 Mark Kettenis <kettenis@openbsd.org> 3 * Copyright (c) 2017 Mark Kettenis <kettenis@openbsd.org>
4 * 4 *
@@ -16,15 +16,11 @@
16 */ 16 */
17 17
18#include <dlfcn.h> 18#include <dlfcn.h>
19#include <elf.h>
20#pragma weak _DYNAMIC
21#include <stdlib.h> 19#include <stdlib.h>
22#include <tib.h> 20#include <tib.h>
23 21
24#include "atexit.h" 22#include "atexit.h"
25 23
26typeof(dlctl) dlctl asm("_dlctl") __attribute__((weak));
27
28__weak_alias(__cxa_thread_atexit, __cxa_thread_atexit_impl); 24__weak_alias(__cxa_thread_atexit, __cxa_thread_atexit_impl);
29 25
30int 26int
@@ -37,8 +33,7 @@ __cxa_thread_atexit_impl(void (*func)(void *), void *arg, void *dso)
37 if (fnp == NULL) 33 if (fnp == NULL)
38 return -1; 34 return -1;
39 35
40 if (_DYNAMIC) 36 dlctl(NULL, DL_REFERENCE, dso);
41 dlctl(NULL, DL_REFERENCE, dso);
42 37
43 fnp->func = func; 38 fnp->func = func;
44 fnp->arg = arg; 39 fnp->arg = arg;