Changes in libcfa/src/heap.hfa [116a2ea:31a5f418]
- File:
-
- 1 edited
-
libcfa/src/heap.hfa (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/heap.hfa
r116a2ea r31a5f418 10 10 // Created On : Tue May 26 11:23:55 2020 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : T ue Oct 4 19:08:55 202213 // Update Count : 2 312 // Last Modified On : Thu Apr 21 22:52:25 2022 13 // Update Count : 21 14 14 // 15 15 … … 30 30 bool checkFreeOff(); 31 31 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 32 41 extern "C" { 33 42 // New allocation operations. … … 40 49 size_t malloc_size( void * addr ); 41 50 int malloc_stats_fd( int fd ); 51 size_t malloc_usable_size( void * addr ); 42 52 size_t malloc_expansion(); // heap expansion size (bytes) 43 53 size_t malloc_mmap_start(); // crossover allocation size from sbrk to mmap
Note:
See TracChangeset
for help on using the changeset viewer.