Thanks to visit codestin.com Credit goes to github.com
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 43d564c commit 7e479c8Copy full SHA for 7e479c8
Objects/obmalloc.c
@@ -45,9 +45,9 @@ static void _PyMem_SetupDebugHooksDomain(PyMemAllocatorDomain domain);
45
# define _Py_NO_ADDRESS_SAFETY_ANALYSIS \
46
__attribute__((no_address_safety_analysis))
47
# endif
48
- // TSAN is supported since GCC 4.8, but __SANITIZE_THREAD__ macro
+ // TSAN is supported since GCC 5.1, but __SANITIZE_THREAD__ macro
49
// is provided only since GCC 7.
50
-# if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 8)
+# if __GNUC__ > 5 || (__GNUC__ == 5 && __GNUC_MINOR__ >= 1)
51
# define _Py_NO_SANITIZE_THREAD __attribute__((no_sanitize_thread))
52
53
#endif
0 commit comments