Home
last modified time | relevance | path

Searched refs:SIGCHLD (Results 1 – 9 of 9) sorted by relevance

/bionic/libc/bionic/
Dfork.cpp40 int result = clone(nullptr, nullptr, (CLONE_CHILD_SETTID | CLONE_CHILD_CLEARTID | SIGCHLD), in __clone_for_fork()
Dsystem.cpp44 ScopedSignalBlocker sigchld_blocker(SIGCHLD); in system()
/bionic/libc/private/
Dbionic_sigdefs.h56 __BIONIC_SIGDEF(SIGCHLD, "Child exited")
/bionic/libc/kernel/uapi/asm-arm/asm/
Dsignal.h42 #define SIGCHLD 17 macro
/bionic/libc/kernel/uapi/asm-generic/
Dsignal.h42 #define SIGCHLD 17 macro
/bionic/libc/arch-arm64/bionic/
Dvfork.S48 mov x0, #(CLONE_VM | CLONE_VFORK | SIGCHLD)
/bionic/libc/kernel/uapi/asm-x86/asm/
Dsignal.h46 #define SIGCHLD 17 macro
/bionic/tests/headers/posix/
Dsignal_h.c77 MACRO(SIGCHLD); in signal_h()
/bionic/tests/
Dunistd_test.cpp552 return clone(nullptr, nullptr, SIGCHLD, nullptr); in CloneLikeFork()
567 …int rv = clone(nullptr, nullptr, CLONE_CHILD_SETTID | SIGCHLD, nullptr, nullptr, nullptr, &child_t… in CloneAndSetTid()
589 return clone(start_routine, untag_address(&child_stack[1024]), SIGCHLD, nullptr); in CloneStartRoutine()