Home
last modified time | relevance | path

Searched refs:CLONE_CHILD_SETTID (Results 1 – 4 of 4) sorted by relevance

/bionic/libc/bionic/
Dclone.cpp71 if ((flags & (CLONE_PARENT_SETTID|CLONE_SETTLS|CLONE_CHILD_SETTID|CLONE_CHILD_CLEARTID)) != 0) { in clone()
74 if ((flags & (CLONE_SETTLS|CLONE_CHILD_SETTID|CLONE_CHILD_CLEARTID)) != 0) { in clone()
77 if ((flags & (CLONE_CHILD_SETTID|CLONE_CHILD_CLEARTID)) != 0) { in clone()
Dfork.cpp44 (CLONE_CHILD_SETTID | CLONE_CHILD_CLEARTID | SIGCHLD), in fork()
/bionic/libc/kernel/uapi/linux/
Dsched.h37 #define CLONE_CHILD_SETTID 0x01000000 macro
/bionic/tests/
Dunistd_test.cpp519 …int rv = clone(nullptr, nullptr, CLONE_CHILD_SETTID | SIGCHLD, nullptr, nullptr, nullptr, &child_t… in CloneAndSetTid()