From cbdec8db18b533f6d7be329da151d6b61df3f98b Mon Sep 17 00:00:00 2001 From: Mark Johnston Date: Mon, 6 Dec 2021 18:02:25 -0500 Subject: [PATCH] libc: Add pdfork to the list of interposed system calls Otherwise the asm stub is used and libthr interposition does not work. Reviewed by: kib Fixes: 21f749da82e7 ("libthr: wrap pdfork(2), same as fork(2).") MFC after: 1 week Sponsored by: The FreeBSD Foundation --- lib/libc/sys/Makefile.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/libc/sys/Makefile.inc b/lib/libc/sys/Makefile.inc index 5c472f83502..14740b74d6b 100644 --- a/lib/libc/sys/Makefile.inc +++ b/lib/libc/sys/Makefile.inc @@ -72,6 +72,7 @@ INTERPOSED = \ nanosleep \ open \ openat \ + pdfork \ poll \ ppoll \ pselect \