Home
last modified time | relevance | path

Searched refs:clone_result (Results 1 – 2 of 2) sorted by relevance

/bionic/libc/bionic/
Dclone.cpp74 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/
Dunistd_test.cpp453 …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()