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 d1c6c0ed4 Revert "tsan: update check_analyze.sh" new 00d38a06e tsan: add fiber support
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: 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 | 8 ++- 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, 466 insertions(+), 10 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