Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/stdhdr/malloc.h

    rada0246d r76e2113  
    1010// Created On       : Thu Jul 20 15:58:16 2017
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed May 27 14:13:14 2020
    13 // Update Count     : 18
     12// Last Modified On : Thu Apr 16 22:44:06 2020
     13// Update Count     : 13
    1414//
     15
     16
     17size_t default_mmap_start();                                                    // CFA extras
     18size_t default_heap_expansion();
     19
     20bool traceHeap();
     21bool traceHeapOn();
     22bool traceHeapOff();
     23
     24bool traceHeapTerm();
     25bool traceHeapTermOn();
     26bool traceHeapTermOff();
     27
     28bool checkFree();
     29bool checkFreeOn();
     30bool checkFreeOff();
     31
     32extern "C" {
     33void * aalloc( size_t noOfElems, size_t elemSize );
     34void * amemalign( size_t alignment, size_t noOfElems, size_t elemSize );
     35void * cmemalign( size_t alignment, size_t noOfElems, size_t elemSize );
     36size_t malloc_alignment( void * );
     37bool malloc_zero_fill( void * );
     38size_t malloc_size( void * );
     39int malloc_stats_fd( int fd );
     40} // extern "C"
    1541
    1642extern "C" {
    1743#include_next <malloc.h>                                                                // has internal check for multiple expansion
    1844} // extern "C"
    19 
    20 #include <heap.hfa>
    2145
    2246// Local Variables: //
Note: See TracChangeset for help on using the changeset viewer.