
11 Sep
2023
11 Sep
'23
8:57 p.m.
From: Ben Wolsieffer <Ben.Wolsieffer@hefring.com> The stub code undefs __NR_fork on no-MMU systems, but it also needs to undef __NR_clone since fork can now be implemented using clone, and clone is not available either on no-MMU systems. --- libc/sysdeps/linux/common/stubs.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libc/sysdeps/linux/common/stubs.c b/libc/sysdeps/linux/common/stubs.c index c17e509b9..11849e3ba 100644 --- a/libc/sysdeps/linux/common/stubs.c +++ b/libc/sysdeps/linux/common/stubs.c @@ -36,6 +36,7 @@ __attribute_used__ static int ret_enosys_stub(void) #ifndef __ARCH_USE_MMU__ # undef __NR_fork +# undef __NR_clone #endif #ifdef __arm__ -- 2.42.0