xref: /aosp_15_r20/external/musl/src/process/aarch64/vfork.s (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
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