Xenomai API  2.5.6.1
local_heap.c
#include <native/heap.h>

#define HEAP_SIZE (256*1024)
#define HEAP_MODE 0             /* Local heap. */

RT_HEAP heap_desc;

int init_module (void)

{
    void *block;
    int err;

    /* Create a 256Kb heap usable for dynamic memory allocation of
       variable-size blocks in kernel space. */

    err = rt_heap_create(&heap_desc,"MyHeapName",HEAP_SIZE,HEAP_MODE);

    if (err)
        fail();

    /* Request a 16-bytes block, asking for a non-blocking call since
       only Xenomai tasks may block. */
    err = rt_heap_alloc(&heap_desc,16,TM_NONBLOCK,&block);

    if (err)
        goto no_memory;

    /* Free the block: */
    rt_heap_free(&heap_desc,block);

    /* ... */
}

void cleanup_module (void)

{
    rt_heap_delete(&heap_desc);
}
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines