blob: 9aa955ae7d749f56c2da4e04fcb4676fc0ccc8b5 [file] [log] [blame]
#include <machine/asm.h>
#include <asm/unistd.h>
#define CLONE_VM 0x00000100
#define CLONE_VFORK 0x00004000
#define SIGCHLD 18
.set noreorder
LEAF(vfork)
li a0, CLONE_VFORK | CLONE_VM | SIGCHLD
li a1, 0
j __syscall_common
li v0, __NR_clone
END(vfork)