- Timestamp:
- Jun 28, 2024, 2:17:20 PM (5 months ago)
- Branches:
- master
- Children:
- 4117761
- Parents:
- 259012e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Common/Stats/Heap.cpp
r259012e r3c55fcd 21 21 #include <iostream> 22 22 23 #if defined(__has_feature) 23 // Most of the other statistics features are deactivated only by defining 24 // NO_STATISTICS (or their NO_%_STATISTICS macro). However the heap has some 25 // other compatability concerns and will disable itself in some cases. 26 // 27 // I do not claim to understand these cases. But TCMALLOC is often defined by 28 // default and you can pass --disable-gprofiler to configure to remove it. 29 30 #if defined(NO_STATISTICS) || defined(TCMALLOC) || defined(__SANITIZE_ADDRESS__) 31 #define NO_HEAP_STATISTICS 32 #elif defined(__has_feature) 24 33 #if __has_feature(address_sanitizer) 25 #define NO_HEAP_STATISTICS26 # endif27 #endif28 29 #if defined( NO_STATISTICS ) || defined( TCMALLOC ) || defined(__SANITIZE_ADDRESS__)30 #if !defined(NO_HEAP_STATISTICS)31 34 #define NO_HEAP_STATISTICS 32 35 #endif
Note: See TracChangeset
for help on using the changeset viewer.