This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository compiler-rt.
from 1f9dab592 Add new interceptor: lstat(2) new f92619e1c Add NetBSD syscall hooks skeleton in sanitizers new cff1a203e Prevent recursive MSan interceptors in fgets(3) new 9719bd128 Prevent recursive MSan interceptors in strftime(3) like functions
The 3 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/CMakeLists.txt | 1 + include/sanitizer/netbsd_syscall_hooks.h | 45 +++ lib/asan/asan_interceptors.cc | 1 + lib/esan/esan_interceptors.cpp | 1 + lib/hwasan/hwasan_interceptors.cc | 1 + lib/msan/msan_interceptors.cc | 3 + lib/sanitizer_common/CMakeLists.txt | 1 + lib/sanitizer_common/sanitizer_syscalls_netbsd.inc | 107 ++++++ lib/tsan/rtl/tsan_interceptors.cc | 1 + utils/generate_netbsd_syscalls.awk | 416 +++++++++++++++++++++ 10 files changed, 577 insertions(+) create mode 100644 include/sanitizer/netbsd_syscall_hooks.h create mode 100644 lib/sanitizer_common/sanitizer_syscalls_netbsd.inc create mode 100755 utils/generate_netbsd_syscalls.awk