forked from OSchip/llvm-project
parent
2a8fcee302
commit
1c5cd7516f
|
@ -1843,10 +1843,14 @@ struct TsanInterceptorContext {
|
|||
#include "sanitizer_common/sanitizer_common_interceptors.inc"
|
||||
|
||||
// FIXME: Implement these with MemoryAccessRange().
|
||||
#define COMMON_SYSCALL_PRE_READ_RANGE(p, s)
|
||||
#define COMMON_SYSCALL_PRE_WRITE_RANGE(p, s)
|
||||
#define COMMON_SYSCALL_POST_READ_RANGE(p, s)
|
||||
#define COMMON_SYSCALL_POST_WRITE_RANGE(p, s)
|
||||
#define COMMON_SYSCALL_PRE_READ_RANGE(p, s) \
|
||||
do { } while (false)
|
||||
#define COMMON_SYSCALL_PRE_WRITE_RANGE(p, s) \
|
||||
do { } while (false)
|
||||
#define COMMON_SYSCALL_POST_READ_RANGE(p, s) \
|
||||
do { } while (false)
|
||||
#define COMMON_SYSCALL_POST_WRITE_RANGE(p, s) \
|
||||
do { } while (false)
|
||||
#include "sanitizer_common/sanitizer_common_syscalls.inc"
|
||||
|
||||
namespace __tsan {
|
||||
|
|
Loading…
Reference in New Issue