Ignore:
Timestamp:
Aug 14, 2018, 1:20:59 PM (5 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, aaron-thesis, arm-eh, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
Children:
7b3a6e6
Parents:
0c827019 (diff), 26f4dbe (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/stdhdr/malloc.h

    r0c827019 r0e0f128  
    1010// Created On       : Thu Jul 20 15:58:16 2017
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Tue Jul 31 10:01:10 2018
    13 // Update Count     : 9
     12// Last Modified On : Sat Aug 11 09:06:31 2018
     13// Update Count     : 10
    1414//
    1515
     
    1818size_t default_heap_expansion();
    1919
    20 _Bool traceHeap();
    21 _Bool traceHeapOn();
    22 _Bool traceHeapOff();
     20bool traceHeap();
     21bool traceHeapOn();
     22bool traceHeapOff();
    2323
    24 _Bool traceHeapTerm();
    25 _Bool traceHeapTermOn();
    26 _Bool traceHeapTermOff();
     24bool traceHeapTerm();
     25bool traceHeapTermOn();
     26bool traceHeapTermOff();
    2727
    28 _Bool checkFree();
    29 _Bool checkFreeOn();
    30 _Bool checkFreeOff();
     28bool checkFree();
     29bool checkFreeOn();
     30bool checkFreeOff();
    3131
    3232extern "C" {
    3333size_t malloc_alignment( void * );
    34 _Bool malloc_zero_fill( void * );
     34bool malloc_zero_fill( void * );
    3535int malloc_stats_fd( int fd );
    3636void * cmemalign( size_t alignment, size_t noOfElems, size_t elemSize );
Note: See TracChangeset for help on using the changeset viewer.