source: src/libcfa/stdhdr/malloc.h@ 4285544e

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr no_list persistent-indexer pthread-emulation qualifiedEnum
Last change on this file since 4285544e was d46ed6e, checked in by Peter A. Buhr <pabuhr@…>, 7 years ago

first attempt for new thread-safe heap

  • Property mode set to 100644
File size: 913 bytes
RevLine 
[3354e6d]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
[d46ed6e]12// Last Modified On : Mon Jul 23 18:20:32 2018
13// Update Count : 8
[3354e6d]14//
15
[d46ed6e]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
[3354e6d]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.