source: libcfa/src/heap.hfa@ 7d9bbef

ADT arm-eh ast-experimental enum forall-pointer-decay jacob/cs343-translation new-ast new-ast-unique-expr pthread-emulation qualifiedEnum
Last change on this file since 7d9bbef was 4e7c0fc0, checked in by Peter A. Buhr <pabuhr@…>, 5 years ago

comment random function about returning int, and reduce includes for stdlib.hfa

  • Property mode set to 100644
File size: 1.3 KB
Line 
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
12// Last Modified On : Mon Jun 1 21:19:00 2020
13// Update Count : 10
14//
15
16#pragma once
17
18size_t default_mmap_start(); // CFA extras
19size_t default_heap_expansion();
20
21bool traceHeap();
22bool traceHeapOn();
23bool traceHeapOff();
24
25bool traceHeapTerm();
26bool traceHeapTermOn();
27bool traceHeapTermOff();
28
29bool checkFree();
30bool checkFreeOn();
31bool checkFreeOff();
32
33extern "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 );
37 void * cmemalign( size_t align, size_t noOfElems, size_t elemSize );
38 size_t malloc_alignment( void * addr );
39 bool malloc_zero_fill( void * addr );
40 size_t malloc_size( void * addr );
41 size_t malloc_usable_size( void * addr );
42 int malloc_stats_fd( int fd );
43} // extern "C"
44
45void * resize( void * oaddr, size_t nalign, size_t size );
46void * 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.