Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/heap.cfa

    r6c5d92f rd134b15  
    1010// Created On       : Tue Dec 19 21:58:35 2017
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Tue Apr 20 21:20:48 2021
    13 // Update Count     : 1033
     12// Last Modified On : Sun Mar 14 10:39:24 2021
     13// Update Count     : 1032
    1414//
    1515
     
    11281128
    11291129        // Set the alignment for an the allocation and return previous alignment or 0 if no alignment.
    1130         size_t malloc_alignment_set$( void * addr, size_t alignment ) {
     1130        size_t $malloc_alignment_set( void * addr, size_t alignment ) {
    11311131          if ( unlikely( addr == 0p ) ) return libAlign();      // minimum alignment
    11321132                size_t ret;
     
    11391139                } // if
    11401140                return ret;
    1141         } // malloc_alignment_set$
     1141        } // $malloc_alignment_set
    11421142
    11431143
     
    11531153
    11541154        // Set allocation is zero filled and return previous zero filled.
    1155         bool malloc_zero_fill_set$( void * addr ) {
     1155        bool $malloc_zero_fill_set( void * addr ) {
    11561156          if ( unlikely( addr == 0p ) ) return false;           // null allocation is not zero fill
    11571157                HeapManager.Storage.Header * header = headerAddr( addr );
     
    11621162                header->kind.real.blockSize |= 2;                               // mark as zero filled
    11631163                return ret;
    1164         } // malloc_zero_fill_set$
     1164        } // $malloc_zero_fill_set
    11651165
    11661166
     
    11761176
    11771177        // Set allocation size and return previous size.
    1178         size_t malloc_size_set$( void * addr, size_t size ) {
     1178        size_t $malloc_size_set( void * addr, size_t size ) {
    11791179          if ( unlikely( addr == 0p ) ) return 0;                       // null allocation has 0 size
    11801180                HeapManager.Storage.Header * header = headerAddr( addr );
     
    11851185                header->kind.real.size = size;
    11861186                return ret;
    1187         } // malloc_size_set$
     1187        } // $malloc_size_set
    11881188
    11891189
Note: See TracChangeset for help on using the changeset viewer.