|
Message-Id: <20180430013622.28792-2-patrick.oppenlander@gmail.com> Date: Mon, 30 Apr 2018 11:36:22 +1000 From: patrick.oppenlander@...il.com To: musl@...ts.openwall.com Cc: Patrick Oppenlander <patrick.oppenlander@...il.com> Subject: [PATCH] arm asm for vfork From: Patrick Oppenlander <patrick.oppenlander@...il.com> --- src/process/arm/vfork.s | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/process/arm/vfork.s diff --git a/src/process/arm/vfork.s b/src/process/arm/vfork.s new file mode 100644 index 00000000..f01fe1d0 --- /dev/null +++ b/src/process/arm/vfork.s @@ -0,0 +1,12 @@ +.syntax unified +.global __vfork +.weak vfork +.type __vfork,%function +.type vfork,%function +__vfork: +vfork: + mov ip, r7 + mov r7, 190 + swi 0 + mov r7, ip + b __syscall_ret -- 2.17.0
Powered by blists - more mailing lists
Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.