Ignore:
Timestamp:
Apr 18, 2020, 9:08:12 AM (4 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
692e6f1
Parents:
899dfbb
Message:

add setter routines for sticky operations, add allocation size to header

File:
1 edited

Legend:

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

    r899dfbb r76e2113  
    1010// Created On       : Thu Jul 20 15:58:16 2017
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Sun Mar  8 10:01:20 2020
    13 // Update Count     : 11
     12// Last Modified On : Thu Apr 16 22:44:06 2020
     13// Update Count     : 13
    1414//
    1515
     
    3131
    3232extern "C" {
     33void * aalloc( size_t noOfElems, size_t elemSize );
     34void * amemalign( size_t alignment, size_t noOfElems, size_t elemSize );
    3335void * cmemalign( size_t alignment, size_t noOfElems, size_t elemSize );
    3436size_t malloc_alignment( void * );
    3537bool malloc_zero_fill( void * );
    36 size_t malloc_dimension( void * );
     38size_t malloc_size( void * );
    3739int malloc_stats_fd( int fd );
    3840} // extern "C"
Note: See TracChangeset for help on using the changeset viewer.