[Openmp-commits] [openmp] [OMPT] Use __tsan_init to detect TSan binaries rather than RunningOnValgrind (PR #128357)

via Openmp-commits openmp-commits at lists.llvm.org
Mon Feb 24 23:42:50 PST 2025


================
@@ -167,8 +167,8 @@ DECLARE_TSAN_FUNCTION(AnnotateNewMemory, const char *, int,
 DECLARE_TSAN_FUNCTION(__tsan_func_entry, const void *)
 DECLARE_TSAN_FUNCTION(__tsan_func_exit)
 
-// RunningOnValgrind is used to detect absence of TSan and must intentionally be a nullptr.
-static int (*RunningOnValgrind)(void);
+// __tsan_init is used to detect absence of TSan and must intentionally be a nullptr.
+static void (*__tsan_init)(void);
----------------
jprotze wrote:

Since the function is never called, I suggest to declare the variable locally in `ompt_start_tool`.

https://github.com/llvm/llvm-project/pull/128357


More information about the Openmp-commits mailing list