Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_syscalls.inc31 // COMMON_SYSCALL_FD_CLOSE(fd)
70 # ifndef COMMON_SYSCALL_FD_CLOSE
71 # define COMMON_SYSCALL_FD_CLOSE(fd) ((void)(fd))
1526 PRE_SYSCALL(close)(long fd) { COMMON_SYSCALL_FD_CLOSE((int)fd); }
H A Dsanitizer_syscalls_netbsd.inc31 // COMMON_SYSCALL_FD_CLOSE(fd)
73 #ifndef COMMON_SYSCALL_FD_CLOSE
74 #define COMMON_SYSCALL_FD_CLOSE(fd) ((void)(fd))
146 PRE_SYSCALL(close)(long long fd_) { COMMON_SYSCALL_FD_CLOSE((int)fd_); }
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors_posix.cpp2742 #define COMMON_SYSCALL_FD_CLOSE(fd) syscall_fd_close(GET_CALLER_PC(), fd) macro