ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change
on this file since 4a32319 was
92850ef,
checked in by Peter A. Buhr <pabuhr@…>, 4 years ago
|
change parameter name to be consistent
|
-
Property mode set to
100644
|
File size:
1.3 KB
|
Rev | Line | |
---|
[ada0246d] | 1 | // |
---|
| 2 | // Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo |
---|
| 3 | // |
---|
| 4 | // The contents of this file are covered under the licence agreement in the |
---|
| 5 | // file "LICENCE" distributed with Cforall. |
---|
| 6 | // |
---|
| 7 | // heap.hfa -- |
---|
| 8 | // |
---|
| 9 | // Author : Peter A. Buhr |
---|
| 10 | // Created On : Tue May 26 11:23:55 2020 |
---|
| 11 | // Last Modified By : Peter A. Buhr |
---|
[92850ef] | 12 | // Last Modified On : Mon Jul 20 18:52:31 2020 |
---|
| 13 | // Update Count : 11 |
---|
[ada0246d] | 14 | // |
---|
| 15 | |
---|
| 16 | #pragma once |
---|
| 17 | |
---|
| 18 | size_t default_mmap_start(); // CFA extras |
---|
| 19 | size_t default_heap_expansion(); |
---|
| 20 | |
---|
| 21 | bool traceHeap(); |
---|
| 22 | bool traceHeapOn(); |
---|
| 23 | bool traceHeapOff(); |
---|
| 24 | |
---|
| 25 | bool traceHeapTerm(); |
---|
| 26 | bool traceHeapTermOn(); |
---|
| 27 | bool traceHeapTermOff(); |
---|
| 28 | |
---|
| 29 | bool checkFree(); |
---|
| 30 | bool checkFreeOn(); |
---|
| 31 | bool checkFreeOff(); |
---|
| 32 | |
---|
| 33 | extern "C" { |
---|
| 34 | void * aalloc( size_t dim, size_t elemSize ); |
---|
| 35 | void * resize( void * oaddr, size_t size ); |
---|
| 36 | void * amemalign( size_t align, size_t dim, size_t elemSize ); |
---|
[92850ef] | 37 | void * cmemalign( size_t align, size_t dim, size_t elemSize ); |
---|
[ada0246d] | 38 | size_t malloc_alignment( void * addr ); |
---|
[4e7c0fc0] | 39 | bool malloc_zero_fill( void * addr ); |
---|
| 40 | size_t malloc_size( void * addr ); |
---|
| 41 | size_t malloc_usable_size( void * addr ); |
---|
[ada0246d] | 42 | int malloc_stats_fd( int fd ); |
---|
| 43 | } // extern "C" |
---|
| 44 | |
---|
| 45 | void * resize( void * oaddr, size_t nalign, size_t size ); |
---|
| 46 | void * realloc( void * oaddr, size_t nalign, size_t size ); |
---|
| 47 | |
---|
| 48 | // Local Variables: // |
---|
| 49 | // mode: c // |
---|
| 50 | // tab-width: 4 // |
---|
| 51 | // End: // |
---|
Note: See
TracBrowser
for help on using the repository browser.