2.8.1.7. alloc_Alloc()

[<<<] [>>>]

Use this function to allocate a memory piece from a segment.

void *alloc_Alloc(size_t n,
                  void *p
  )@{

The first argument is the size to be allocated. The second argument is the segment which should be used for the allocation.

If the memory allocation fails the function returns NULL.


[<<<] [>>>]