Changeset 97392b69 for libcfa/src/stdhdr
- Timestamp:
- Jun 10, 2020, 4:19:30 PM (4 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- ab8a023
- Parents:
- a5873bd (diff), ee06db5c (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. - Location:
- libcfa/src/stdhdr
- Files:
-
- 1 added
- 1 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/stdhdr/malloc.h
ra5873bd r97392b69 10 10 // Created On : Thu Jul 20 15:58:16 2017 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Thu Apr 16 22:44:06202013 // Update Count : 1 312 // 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 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 );36 size_t malloc_alignment( void * );37 bool malloc_zero_fill( void * );38 size_t malloc_size( void * );39 int malloc_stats_fd( int fd );40 } // extern "C"41 15 42 16 extern "C" { 43 17 #include_next <malloc.h> // has internal check for multiple expansion 44 18 } // extern "C" 19 20 #include <heap.hfa> 45 21 46 22 // Local Variables: //
Note: See TracChangeset
for help on using the changeset viewer.