Searched refs:clone_result (Results 1 – 2 of 2) sorted by relevance
/bionic/libc/bionic/ |
D | clone.cpp | 74 int clone_result = __bionic_clone(flags, child_stack, parent_tid, new_tls, child_tid, fn, arg); in clone() local 82 return clone_result; in clone()
|
/bionic/tests/ |
D | unistd_test.cpp | 453 …int clone_result = clone(GetPidCachingCloneStartRoutine, &child_stack[1024], CLONE_NEWNS | SIGCHLD… in TEST() local 454 if (clone_result == -1 && errno == EPERM && getuid() != 0) { in TEST() 458 ASSERT_NE(clone_result, -1); in TEST() 462 AssertChildExited(clone_result, 123); in TEST()
|