forked from pool/glibc
Andreas Schwab
5094961fbd
- riscv-vfork.patch: Fix RISC-V vfork build with Linux 5.3 kernel headers OBS-URL: https://build.opensuse.org/request/show/731862 OBS-URL: https://build.opensuse.org/package/show/Base:System/glibc?expand=0&rev=539
26 lines
774 B
Diff
26 lines
774 B
Diff
2019-09-18 Joseph Myers <joseph@codesourcery.com>
|
|
|
|
* sysdeps/unix/sysv/linux/riscv/vfork.S: Do not include
|
|
<linux/sched.h>.
|
|
(CLONE_VM): New macro.
|
|
(CLONE_VFORK): Likewise.
|
|
|
|
Index: glibc-2.30/sysdeps/unix/sysv/linux/riscv/vfork.S
|
|
===================================================================
|
|
--- glibc-2.30.orig/sysdeps/unix/sysv/linux/riscv/vfork.S
|
|
+++ glibc-2.30/sysdeps/unix/sysv/linux/riscv/vfork.S
|
|
@@ -21,9 +21,12 @@
|
|
#include <sys/asm.h>
|
|
#include <sysdep.h>
|
|
#define __ASSEMBLY__
|
|
-#include <linux/sched.h>
|
|
#include <asm/signal.h>
|
|
|
|
+#define CLONE_VM 0x00000100 /* Set if VM shared between processes. */
|
|
+#define CLONE_VFORK 0x00004000 /* Set if the parent wants the child to
|
|
+ wake it up on mm_release. */
|
|
+
|
|
.text
|
|
LEAF (__libc_vfork)
|
|
|