Symbol: CLONE_VM
sys/kern/kern_fork.c
172
&& (SCARG(uap, flags) & CLONE_VM) == 0)
sys/kern/kern_fork.c
177
if (SCARG(uap, flags) & CLONE_VM)
tests/lib/libc/sys/t_clone.c
136
CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|SIGUSR1,
tests/lib/libc/sys/t_clone.c
189
CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|SIGCHLD, NULL);
tests/lib/libc/sys/t_clone.c
211
CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|SIGCHLD, NULL);
tests/lib/libc/sys/t_clone.c
243
CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|SIGCHLD, (void *)&rl);
tests/lib/libc/sys/t_fork.c
350
NESTED(nested_clone_vm, clone, CLONE_VM)
tests/lib/libc/sys/t_ptrace_clone_wait.h
250
CLONE_TEST(clone_vm1, CLONE_VM, false, false, false)
tests/lib/libc/sys/t_ptrace_clone_wait.h
252
CLONE_TEST(clone_vm2, CLONE_VM, true, false, false)
tests/lib/libc/sys/t_ptrace_clone_wait.h
253
CLONE_TEST(clone_vm3, CLONE_VM, false, true, false)
tests/lib/libc/sys/t_ptrace_clone_wait.h
254
CLONE_TEST(clone_vm4, CLONE_VM, true, true, false)
tests/lib/libc/sys/t_ptrace_clone_wait.h
256
CLONE_TEST(clone_vm5, CLONE_VM, false, false, true)
tests/lib/libc/sys/t_ptrace_clone_wait.h
258
CLONE_TEST(clone_vm6, CLONE_VM, true, false, true)
tests/lib/libc/sys/t_ptrace_clone_wait.h
259
CLONE_TEST(clone_vm7, CLONE_VM, false, true, true)
tests/lib/libc/sys/t_ptrace_clone_wait.h
260
CLONE_TEST(clone_vm8, CLONE_VM, true, true, true)
tests/lib/libc/sys/t_ptrace_clone_wait.h
665
CLONE_TEST2(clone_vm_signalignored, CLONE_VM, true, false)
tests/lib/libc/sys/t_ptrace_clone_wait.h
666
CLONE_TEST2(clone_vm_signalmasked, CLONE_VM, false, true)
tests/lib/libc/sys/t_ptrace_clone_wait.h
753
TRACEME_VFORK_CLONE_TEST(traceme_vfork_clone_vm, CLONE_VM)