Changes in libcfa/src/stdhdr/malloc.h [bf71cfd:cfbc703d]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/stdhdr/malloc.h
rbf71cfd rcfbc703d 10 10 // Created On : Thu Jul 20 15:58:16 2017 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue Jul 31 10:01:10 201813 // Update Count : 912 // Last Modified On : Sun Mar 8 10:01:20 2020 13 // Update Count : 11 14 14 // 15 15 … … 18 18 size_t default_heap_expansion(); 19 19 20 _Bool traceHeap();21 _Bool traceHeapOn();22 _Bool traceHeapOff();20 bool traceHeap(); 21 bool traceHeapOn(); 22 bool traceHeapOff(); 23 23 24 _Bool traceHeapTerm();25 _Bool traceHeapTermOn();26 _Bool traceHeapTermOff();24 bool traceHeapTerm(); 25 bool traceHeapTermOn(); 26 bool traceHeapTermOff(); 27 27 28 _Bool checkFree();29 _Bool checkFreeOn();30 _Bool checkFreeOff();28 bool checkFree(); 29 bool checkFreeOn(); 30 bool checkFreeOff(); 31 31 32 32 extern "C" { 33 void * cmemalign( size_t alignment, size_t noOfElems, size_t elemSize ); 33 34 size_t malloc_alignment( void * ); 34 _Bool malloc_zero_fill( void * ); 35 bool malloc_zero_fill( void * ); 36 size_t malloc_dimension( void * ); 35 37 int malloc_stats_fd( int fd ); 36 void * cmemalign( size_t alignment, size_t noOfElems, size_t elemSize );37 38 } // extern "C" 38 39
Note:
See TracChangeset
for help on using the changeset viewer.