Changes between Version 1 and Version 2 of library_malloc


Ignore:
Timestamp:
Aug 4, 2014, 3:59:56 PM (10 years ago)
Author:
alain
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • library_malloc

    v1 v2  
    11= The Malloc Library =
    22
     3The [source:soft/giet_vm/giet_libs/malloc.c malloc.c] and [source:soft/giet_vm/giet_libs/malloc.h malloc.h]
     4provide a dynamic memory allocation service.
    35
    46If the target architecture is clusterized (one physical memory bank per cluster),
     
    68and one allocator per cluster.
    79
    8 The distributed heap(x,y) segments must be explicitely defined in the mapping.
     10The distributed heap(x,y) segments must be explicitely defined in the application mapping.
    911
    10 For the malloc() function, theThe cluster selection can be implicit (
     12 * For the '''malloc()''' function, the cluster selection is implicit: the (x,y) coordinate are defined by the coordinates of the processor running the calling task.
     13 * For the '''remote_malloc()''' function, the cluster selection is explicit: the (x,y) coordinates are arguments defined by the calling task
    1114
    1215 == Available functions
     16
     17 *