Home
last modified time | relevance | path

Searched refs:COMMON_SYSCALL_POST_FORK (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_syscalls.inc39 // COMMON_SYSCALL_POST_FORK(long res)
83 # ifndef COMMON_SYSCALL_POST_FORK
84 # define COMMON_SYSCALL_POST_FORK(res) \
3100 POST_SYSCALL(fork)(long res) { COMMON_SYSCALL_POST_FORK(res); }
3104 POST_SYSCALL(vfork)(long res) { COMMON_SYSCALL_POST_FORK(res); }
H A Dsanitizer_syscalls_netbsd.inc39 // COMMON_SYSCALL_POST_FORK(long long res)
90 #ifndef COMMON_SYSCALL_POST_FORK
91 #define COMMON_SYSCALL_POST_FORK(res) \
109 POST_SYSCALL(fork)(long long res) { COMMON_SYSCALL_POST_FORK(res); }
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors_posix.cpp2721 #define COMMON_SYSCALL_POST_FORK(res) \ macro