summaryrefslogtreecommitdiffstats
path: root/lib/libc/sys
diff options
context:
space:
mode:
authorguenther <guenther@openbsd.org>2017-09-05 02:40:54 +0000
committerguenther <guenther@openbsd.org>2017-09-05 02:40:54 +0000
commita5511fa9f431600dbd6dc2b46fc4e6b73e7d239c (patch)
treebf9e27f29ab35e6599d4c1362a9902d7e7bfdc74 /lib/libc/sys
parentSerialize access to IP reassembly queue with a mutex. This lets (diff)
downloadwireguard-openbsd-a5511fa9f431600dbd6dc2b46fc4e6b73e7d239c.tar.xz
wireguard-openbsd-a5511fa9f431600dbd6dc2b46fc4e6b73e7d239c.zip
Move mutex, condvar, and thread-specific data routes, pthread_once, and
pthread_exit from libpthread to libc, along with low-level bits to support them. Major bump to both libc and libpthread. Requested by libressl team. Ports testing by naddy@ ok kettenis@
Diffstat (limited to 'lib/libc/sys')
-rw-r--r--lib/libc/sys/canceled.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/sys/canceled.c b/lib/libc/sys/canceled.c
index 7bf02c93552..3d3da57f2cf 100644
--- a/lib/libc/sys/canceled.c
+++ b/lib/libc/sys/canceled.c
@@ -24,4 +24,4 @@ _thread_canceled(void)
_thread_cb.tc_canceled();
exit(0);
}
-
+DEF_STRONG(_thread_canceled);