Ignore:
File:
1 edited

Legend:

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

    rcfbc703d rbf71cfd  
    1010// Created On       : Thu Jul 20 15:58:16 2017
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Sun Mar  8 10:01:20 2020
    13 // Update Count     : 11
     12// Last Modified On : Tue Jul 31 10:01:10 2018
     13// Update Count     : 9
    1414//
    1515
     
    1818size_t default_heap_expansion();
    1919
    20 bool traceHeap();
    21 bool traceHeapOn();
    22 bool traceHeapOff();
     20_Bool traceHeap();
     21_Bool traceHeapOn();
     22_Bool traceHeapOff();
    2323
    24 bool traceHeapTerm();
    25 bool traceHeapTermOn();
    26 bool traceHeapTermOff();
     24_Bool traceHeapTerm();
     25_Bool traceHeapTermOn();
     26_Bool traceHeapTermOff();
    2727
    28 bool checkFree();
    29 bool checkFreeOn();
    30 bool checkFreeOff();
     28_Bool checkFree();
     29_Bool checkFreeOn();
     30_Bool checkFreeOff();
    3131
    3232extern "C" {
     33size_t malloc_alignment( void * );
     34_Bool malloc_zero_fill( void * );
     35int malloc_stats_fd( int fd );
    3336void * cmemalign( size_t alignment, size_t noOfElems, size_t elemSize );
    34 size_t malloc_alignment( void * );
    35 bool malloc_zero_fill( void * );
    36 size_t malloc_dimension( void * );
    37 int malloc_stats_fd( int fd );
    3837} // extern "C"
    3938
Note: See TracChangeset for help on using the changeset viewer.