Searched refs:child_stack (Results 1 – 2 of 2) sorted by relevance
/frameworks/libs/binary_translation/guest_os_primitives/ |
D | guest_thread_clone.cc | 40 long CloneSyscall(long flags, long child_stack, long parent_tid, long new_tls, long child_tid) { in CloneSyscall() argument 42 return syscall(__NR_clone, flags, child_stack, parent_tid, child_tid, new_tls); in CloneSyscall() 44 return syscall(__NR_clone, flags, child_stack, parent_tid, new_tls, child_tid); in CloneSyscall()
|
/frameworks/libs/binary_translation/tests/ndk_program_tests/ |
D | clone_test.cc | 45 void* child_stack[kStackSize]; in CloneVMAndWait() local 46 pid_t tid = clone(runner, &child_stack[kStackSize], CLONE_VM | extra_flags, nullptr); in CloneVMAndWait()
|