xref: /third_party/musl/src/process/aarch64/vfork.s (revision 570af302)
1.global vfork
2.type vfork,%function
3vfork:
4	mov x8, 220    // SYS_clone
5	mov x0, 0x4111 // SIGCHLD | CLONE_VM | CLONE_VFORK
6	mov x1, 0
7	svc 0
8	.hidden __syscall_ret
9	b __syscall_ret
10