We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e510d39 commit 954088fCopy full SHA for 954088f
1 file changed
core/base/src/TObject.cxx
@@ -70,8 +70,10 @@ Bool_t TObject::fgObjectStat = kTRUE;
70
71
#if defined(__clang__) || defined(__GNUC__)
72
#define ATTRIBUTE_NO_SANITIZE_ADDRESS __attribute__((no_sanitize_address))
73
+#define ATTRIBUTE_NO_SANITIZE_THREAD __attribute__((no_sanitize_thread))
74
#else
75
#define ATTRIBUTE_NO_SANITIZE_ADDRESS
76
+#define ATTRIBUTE_NO_SANITIZE_THREAD
77
#endif
78
79
namespace ROOT {
@@ -85,6 +87,7 @@ namespace Internal {
85
87
// delete, we can still use it to detect the cases where the destructor was called.
86
88
89
ATTRIBUTE_NO_SANITIZE_ADDRESS
90
+ATTRIBUTE_NO_SANITIZE_THREAD
91
bool DeleteChangesMemoryImpl()
92
{
93
static constexpr UInt_t kGoldenUUID = 0x00000021;
0 commit comments