MTek-GDL 0.100.4-muffintrap
Loading...
Searching...
No Matches
Macros
MEM2 Memory Management Macros

Macros to seconday memory management functions for MEM2 memory management. More...

Collaboration diagram for MEM2 Memory Management Macros:

Macros

#define malloc2(s)   (valloc(s))
 
#define free2(s)   (vfree(s))
 

Detailed Description

Macros to seconday memory management functions for MEM2 memory management.

For convenience, MEM2 memory management routines are defined by these macros to make it convenient to replace memory managers by simply modifying the appropriate macros.

Macro Definition Documentation

◆ free2

#define free2 (   s)    (vfree(s))

MEM2 version of free(). Its actually an alias for vfree() by default.

◆ malloc2

#define malloc2 (   s)    (valloc(s))

MEM2 version of malloc(). Its actually an alias for valloc() by default.