Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/heap.hfa

    r116a2ea r31a5f418  
    1010// Created On       : Tue May 26 11:23:55 2020
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Tue Oct  4 19:08:55 2022
    13 // Update Count     : 23
     12// Last Modified On : Thu Apr 21 22:52:25 2022
     13// Update Count     : 21
    1414//
    1515
     
    3030bool checkFreeOff();
    3131
     32// supported mallopt options
     33#ifndef M_MMAP_THRESHOLD
     34#define M_MMAP_THRESHOLD (-1)
     35#endif // M_MMAP_THRESHOLD
     36
     37#ifndef M_TOP_PAD
     38#define M_TOP_PAD (-2)
     39#endif // M_TOP_PAD
     40
    3241extern "C" {
    3342        // New allocation operations.
     
    4049        size_t malloc_size( void * addr );
    4150        int malloc_stats_fd( int fd );
     51        size_t malloc_usable_size( void * addr );
    4252        size_t malloc_expansion();                                                      // heap expansion size (bytes)
    4353        size_t malloc_mmap_start();                                                     // crossover allocation size from sbrk to mmap
Note: See TracChangeset for help on using the changeset viewer.