On Mon, Nov 22, 2021 at 08:00:38PM +0100, Dmitry Vyukov wrote: > Not sure about gcc, but in clang the old no_sanitize_thread attribute > disabled only part of instrumentation (only memory accesses, but not > atomics and function entry/exit). The new attribute disables all > instrumentation.
In gcc no_sanitize("thread") as well as no_sanitize_thread attributes affect everything (function entry/exit, atomics and memory accesses). Jakub