osal_mem.h

Overview

Related Modules:

OSAL

Description:

Declares the driver memory request and release interfaces.

Since:

1.0

Version:

1.0

Summary

Functions

Function Name Description
OsalMemAlloc (size_t size) void Allocates memory of a specified size.
OsalMemCalloc (size_t size) void Allocates memory of a specified size, and clears the allocated memory.
OsalMemAllocAlign (size_t alignment, size_t size) void Allocates memory of a specified size, and aligns the memory address on a given boundary.
OsalMemFree (void mem) void Releases memory.