Contiki-NG

Memory block allocation routines. More...

#include <stdbool.h>
#include <stdlib.h>
#include "sys/cc.h"

Go to the source code of this file.

Macros

#define MEMB(name, structure, num)
 Declare a memory block. More...
 

Functions

void memb_init (struct memb *m)
 Initialize a memory block that was declared with MEMB(). More...
 
void * memb_alloc (struct memb *m)
 Allocate a memory block from a block of memory declared with MEMB(). More...
 
int memb_free (struct memb *m, void *ptr)
 Deallocate a memory block from a memory block previously declared with MEMB(). More...
 
int memb_inmemb (struct memb *m, void *ptr)
 Check if a given address is within a memory area previously declared with MEMB(). More...
 
size_t memb_numfree (struct memb *m)
 Count free memory blocks. More...
 

Detailed Description

Memory block allocation routines.

Author
Adam Dunkels adam@.nosp@m.sics.nosp@m..se

Definition in file memb.h.