Changes in libcfa/src/stdhdr/malloc.h [bf71cfd:76e2113]
- File:
-
- 1 edited
-
libcfa/src/stdhdr/malloc.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/stdhdr/malloc.h
rbf71cfd r76e2113 10 10 // Created On : Thu Jul 20 15:58:16 2017 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : T ue Jul 31 10:01:10 201813 // Update Count : 912 // Last Modified On : Thu Apr 16 22:44:06 2020 13 // Update Count : 13 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 * aalloc( size_t noOfElems, size_t elemSize ); 34 void * amemalign( size_t alignment, size_t noOfElems, size_t elemSize ); 35 void * cmemalign( size_t alignment, size_t noOfElems, size_t elemSize ); 33 36 size_t malloc_alignment( void * ); 34 _Bool malloc_zero_fill( void * ); 37 bool malloc_zero_fill( void * ); 38 size_t malloc_size( void * ); 35 39 int malloc_stats_fd( int fd ); 36 void * cmemalign( size_t alignment, size_t noOfElems, size_t elemSize );37 40 } // extern "C" 38 41
Note:
See TracChangeset
for help on using the changeset viewer.