Changeset dab98b3e for libcfa/src/heap.cfa
- Timestamp:
- Dec 6, 2019, 3:14:03 PM (6 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:
- e1990f1
- Parents:
- c8c0c7c5 (diff), baf608a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/heap.cfa
rc8c0c7c5 rdab98b3e 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.