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 3beec3321 tsan: Introduce in_symbolizer() function for Thread sanitizer new a63728f56 tsan: add fiber support new 2188fd227 tsan: update check_analyze.sh
The 2 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/sanitizer/tsan_interface.h | 18 +++++ lib/sanitizer_common/sanitizer_thread_registry.h | 1 + lib/tsan/check_analyze.sh | 8 +-- lib/tsan/rtl/tsan_interceptors.cc | 6 ++ lib/tsan/rtl/tsan_interceptors.h | 2 + lib/tsan/rtl/tsan_interface.cc | 28 ++++++++ lib/tsan/rtl/tsan_rtl.h | 24 ++++++- lib/tsan/rtl/tsan_rtl_thread.cc | 39 ++++++++++- test/tsan/fiber_asm.cc | 86 ++++++++++++++++++++++++ test/tsan/fiber_from_thread.cc | 48 +++++++++++++ test/tsan/fiber_longjmp.cc | 80 ++++++++++++++++++++++ test/tsan/fiber_race.cc | 36 ++++++++++ test/tsan/fiber_simple.cc | 36 ++++++++++ test/tsan/fiber_two_threads.cc | 62 +++++++++++++++++ 14 files changed, 465 insertions(+), 9 deletions(-) create mode 100644 test/tsan/fiber_asm.cc create mode 100644 test/tsan/fiber_from_thread.cc create mode 100644 test/tsan/fiber_longjmp.cc create mode 100644 test/tsan/fiber_race.cc create mode 100644 test/tsan/fiber_simple.cc create mode 100644 test/tsan/fiber_two_threads.cc