source: src/libcfa/stdhdr/malloc.h @ d46ed6e

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprno_listpersistent-indexerpthread-emulationqualifiedEnum
Last change on this file since d46ed6e was d46ed6e, checked in by Peter A. Buhr <pabuhr@…>, 6 years ago

first attempt for new thread-safe heap

  • Property mode set to 100644
File size: 913 bytes
Line 
1//
2// Cforall Version 1.0.0 Copyright (C) 2017 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// malloc.h --
8//
9// Author           : Peter A. Buhr
10// Created On       : Thu Jul 20 15:58:16 2017
11// Last Modified By : Peter A. Buhr
12// Last Modified On : Mon Jul 23 18:20:32 2018
13// Update Count     : 8
14//
15
16
17size_t default_mmap_start();                                                    // CFA extras
18size_t default_heap_expansion();
19extern "C" {
20size_t malloc_alignment( void * );
21_Bool malloc_zero_fill( void * );
22int malloc_stats_fd( int fd );
23void * cmemalign( size_t alignment, size_t noOfElems, size_t elemSize );
24} // extern "C"
25
26extern "C" {
27#include_next <malloc.h>                                                                // has internal check for multiple expansion
28} // extern "C"
29
30// Local Variables: //
31// tab-width: 4 //
32// mode: c++ //
33// compile-command: "make install" //
34// End: //
Note: See TracBrowser for help on using the repository browser.