Index: libcfa/src/heap.cfa
===================================================================
--- libcfa/src/heap.cfa	(revision c58ead7c304c33bc8c33d1ca270fffcfa955ec02)
+++ libcfa/src/heap.cfa	(revision f842032a0a09c7dcfe63ef8705bff30bf6b1b1b0)
@@ -10,6 +10,6 @@
 // Created On       : Tue Dec 19 21:58:35 2017
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Mon Sep 11 11:21:10 2023
-// Update Count     : 1615
+// Last Modified On : Sat Sep 30 17:31:15 2023
+// Update Count     : 1617
 //
 
@@ -53,5 +53,5 @@
 #define TLSMODEL __attribute__(( tls_model("initial-exec") ))
 
-//#define __STATISTICS__
+#define __STATISTICS__
 
 enum {
@@ -681,5 +681,5 @@
 
 static HeapStatistics & collectStats( HeapStatistics & stats ) with( heapMaster ) {
-	lock( mgrLock );
+	lock( heapMaster.mgrLock );
 
 	stats += heapMaster.stats;
@@ -688,10 +688,10 @@
 	} // for
 
-	unlock( mgrLock );
+	unlock( heapMaster.mgrLock );
 	return stats;
 } // collectStats
 
 static inline void clearStats() {
-	lock( mgrLock );
+	lock( heapMaster.mgrLock );
 
 	// Zero the heap master and all active thread heaps.
@@ -701,5 +701,5 @@
 	} // for
 
-	unlock( mgrLock );
+	unlock( heapMaster.mgrLock );
 } // clearStats
 #endif // __STATISTICS__
