Changeset eef8dfb for libcfa/src/stdhdr/malloc.h
- Timestamp:
- Jan 7, 2021, 2:55:57 PM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 58fe85a
- Parents:
- bdfc032 (diff), 44e37ef (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/stdhdr/malloc.h
rbdfc032 reef8dfb 10 10 // Created On : Thu Jul 20 15:58:16 2017 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sat Aug 11 09:06:31 201813 // Update Count : 1 012 // Last Modified On : Wed May 27 14:13:14 2020 13 // Update Count : 18 14 14 // 15 16 17 size_t default_mmap_start(); // CFA extras18 size_t default_heap_expansion();19 20 bool traceHeap();21 bool traceHeapOn();22 bool traceHeapOff();23 24 bool traceHeapTerm();25 bool traceHeapTermOn();26 bool traceHeapTermOff();27 28 bool checkFree();29 bool checkFreeOn();30 bool checkFreeOff();31 32 extern "C" {33 size_t malloc_alignment( void * );34 bool malloc_zero_fill( void * );35 int malloc_stats_fd( int fd );36 void * cmemalign( size_t alignment, size_t noOfElems, size_t elemSize );37 } // extern "C"38 15 39 16 extern "C" { 40 17 #include_next <malloc.h> // has internal check for multiple expansion 41 18 } // extern "C" 19 20 #include <heap.hfa> 42 21 43 22 // Local Variables: //
Note:
See TracChangeset
for help on using the changeset viewer.