diff options
author | 2012-03-22 00:44:55 +0000 | |
---|---|---|
committer | 2012-03-22 00:44:55 +0000 | |
commit | c6f64c6fd2f950c7ce17d31c283f1cb710580942 (patch) | |
tree | 983b66e2289c5902defc973215f6f6b757d4736e /lib/libc/sys | |
parent | new sentence, new line; (diff) | |
download | wireguard-openbsd-c6f64c6fd2f950c7ce17d31c283f1cb710580942.tar.xz wireguard-openbsd-c6f64c6fd2f950c7ce17d31c283f1cb710580942.zip |
Move __tfork_thread() from rthreads (libpthread) to libc so that
it can be used for not-strictly-threading purposes
ok matthew@ kurt@
Diffstat (limited to 'lib/libc/sys')
-rw-r--r-- | lib/libc/sys/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/sys/Makefile.inc b/lib/libc/sys/Makefile.inc index dcf2d4cb688..838d63cca31 100644 --- a/lib/libc/sys/Makefile.inc +++ b/lib/libc/sys/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.98 2012/03/13 15:55:46 guenther Exp $ +# $OpenBSD: Makefile.inc,v 1.99 2012/03/22 00:44:55 guenther Exp $ # $NetBSD: Makefile.inc,v 1.35 1995/10/16 23:49:07 jtc Exp $ # @(#)Makefile.inc 8.1 (Berkeley) 6/17/93 @@ -8,7 +8,7 @@ # modules with non-default implementations on at least one architecture: SRCS+= Ovfork.S brk.S cerror.S exect.S fork.S rfork.S \ sbrk.S sigpending.S sigprocmask.S sigreturn.S \ - sigsuspend.S syscall.S + sigsuspend.S syscall.S tfork_thread.S LSRCS+= Lint_Ovfork.c Lint_brk.c Lint_exect.c Lint_fork.c \ Lint_rfork.c Lint_sbrk.c \ |