Changes between Version 14 and Version 15 of library_malloc


Ignore:
Timestamp:
Aug 3, 2015, 11:52:31 PM (9 years ago)
Author:
guerin
Comment:

remove almalloc

Legend:

Unmodified
Added
Removed
Modified
  • library_malloc

    v14 v15  
    2525The malloc() and free() functions below have the same semantic as the standard UNIX functions. The cluster where the memory is allocated is implicitely defined by the (x,y) coordinate of the processor running the calling task.
    2626
    27 almalloc() and alfree() can be used to allocate aligned memory blocks. These two functions are implemented on top of malloc/free().
    28 
    2927The remote_malloc() function is a specific GIET-VM extension that allow the application to explicitely select the cluster(x,y) where physical memory will be allocated.
    3028
     
    3735 * '''void * remote_malloc( unsigned int size, unsigned int x, unsigned int y )
    3836 * '''void free( void* ptr )
    39  * '''void * almalloc( unsigned int align, unsigned int size )
    40  * '''void alfree( void* ptr )
    4137