From ced75472d7e3d73d5b057e36ccbc7b7fcba95104 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Tue, 11 Sep 2018 15:26:51 -0400 Subject: remove __vfork alias this was added so that posix_spawn and possibly other functionality could be implemented in terms of vfork, but that turned out to be unsafe. any such usage needs __clone with proper handling of stack lifetime. --- src/process/arm/vfork.s | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/process/arm') diff --git a/src/process/arm/vfork.s b/src/process/arm/vfork.s index ed1f87a6..d7ec41b3 100644 --- a/src/process/arm/vfork.s +++ b/src/process/arm/vfork.s @@ -1,9 +1,6 @@ .syntax unified -.global __vfork -.weak vfork -.type __vfork,%function +.global vfork .type vfork,%function -__vfork: vfork: mov ip, r7 mov r7, 190 -- cgit v1.2.1