mirror of
git://git.musl-libc.org/musl
synced 2025-03-06 20:48:29 +01:00
add arm asm for vfork
This commit is contained in:
parent
55a1c9c890
commit
a8c53794a0
1 changed files with 13 additions and 0 deletions
13
src/process/arm/vfork.s
Normal file
13
src/process/arm/vfork.s
Normal file
|
@ -0,0 +1,13 @@
|
|||
.syntax unified
|
||||
.global __vfork
|
||||
.weak vfork
|
||||
.type __vfork,%function
|
||||
.type vfork,%function
|
||||
__vfork:
|
||||
vfork:
|
||||
mov ip, r7
|
||||
mov r7, 190
|
||||
svc 0
|
||||
mov r7, ip
|
||||
.hidden __syscall_ret
|
||||
b __syscall_ret
|
Loading…
Add table
Reference in a new issue