Files
clang-p2996/compiler-rt/lib/tsan
Dmitry Vyukov c7081b5b4c tsan: fix crash during thread exit
Use of gethostent provokes caching of some resources inside of libc.
They are freed in __libc_thread_freeres very late in thread lifetime,
after our ThreadFinish. __libc_thread_freeres calls free which
previously crashed in malloc hooks.
Fix it by setting ignore_interceptors for finished threads,
which in turn prevents malloc hooks.

Reviewed By: melver

Differential Revision: https://reviews.llvm.org/D113989
2021-11-16 16:43:09 +01:00
..
2021-08-13 17:45:29 +02:00
2021-11-12 17:49:47 +01:00
2021-11-16 16:43:09 +01:00
2021-11-12 17:49:47 +01:00
2021-11-16 00:42:30 +00:00