// // Cforall Version 1.0.0 Copyright (C) 2017 University of Waterloo // // The contents of this file are covered under the licence agreement in the // file "LICENCE" distributed with Cforall. // // malloc.h -- // // Author : Peter A. Buhr // Created On : Thu Jul 20 15:58:16 2017 // Last Modified By : Peter A. Buhr // Last Modified On : Tue Jul 31 10:01:10 2018 // Update Count : 9 // size_t default_mmap_start(); // CFA extras size_t default_heap_expansion(); _Bool traceHeap(); _Bool traceHeapOn(); _Bool traceHeapOff(); _Bool traceHeapTerm(); _Bool traceHeapTermOn(); _Bool traceHeapTermOff(); _Bool checkFree(); _Bool checkFreeOn(); _Bool checkFreeOff(); extern "C" { size_t malloc_alignment( void * ); _Bool malloc_zero_fill( void * ); int malloc_stats_fd( int fd ); void * cmemalign( size_t alignment, size_t noOfElems, size_t elemSize ); } // extern "C" extern "C" { #include_next // has internal check for multiple expansion } // extern "C" // Local Variables: // // tab-width: 4 // // mode: c++ // // compile-command: "make install" // // End: //