Changeset baf608a
- Timestamp:
- Dec 5, 2019, 10:59:19 PM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- dab98b3e
- Parents:
- 09d4b22
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/heap.cfa
r09d4b22 rbaf608a 10 10 // Created On : Tue Dec 19 21:58:35 2017 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue Dec 3 13:58:44201913 // Update Count : 64 212 // Last Modified On : Wed Dec 4 21:42:46 2019 13 // Update Count : 646 14 14 // 15 15 … … 35 35 static bool traceHeap = false; 36 36 37 inline bool traceHeap() { 38 return traceHeap; 39 } // traceHeap 37 inline bool traceHeap() { return traceHeap; } 40 38 41 39 bool traceHeapOn() { … … 50 48 return temp; 51 49 } // traceHeapOff 50 51 bool traceHeapTerm() { return false; } 52 52 53 53 … … 694 694 static void ^?{}( HeapManager & ) { 695 695 #ifdef __STATISTICS__ 696 //if ( traceHeapTerm() ) {697 //printStats();698 //if ( prtfree() ) prtFree( heapManager, true );699 //} // if696 if ( traceHeapTerm() ) { 697 printStats(); 698 // if ( prtfree() ) prtFree( heapManager, true ); 699 } // if 700 700 #endif // __STATISTICS__ 701 701 } // ~HeapManager
Note: See TracChangeset
for help on using the changeset viewer.