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 eaa4331 [sanitizer] Move termination functions in their own file new 929d23e [esan] Add handling of large stack size rlimits
The 1 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: lib/esan/CMakeLists.txt | 1 + lib/esan/esan.cpp | 2 + lib/esan/esan.h | 6 ++ lib/esan/esan_interceptors.cpp | 43 ++----------- lib/esan/esan_linux.cpp | 83 +++++++++++++++++++++++++ lib/esan/esan_shadow.h | 8 +++ lib/sanitizer_common/sanitizer_common.h | 1 + lib/sanitizer_common/sanitizer_posix_libcdep.cc | 4 ++ test/esan/TestCases/large-stack-linux.c | 74 ++++++++++++++++++++++ test/esan/TestCases/mmap-shadow-conflict.c | 3 +- test/esan/TestCases/verbose-simple.c | 3 +- test/esan/TestCases/workingset-memset.cpp | 7 ++- 12 files changed, 191 insertions(+), 44 deletions(-) create mode 100644 lib/esan/esan_linux.cpp create mode 100644 test/esan/TestCases/large-stack-linux.c