Module alloc

Source
Expand description

Memory allocation functions. This module provides functions for memory allocation, deallocation, and reallocation.

Modules§

scrap_alloc
Scrap heap allocation rust like API(But for reasons of scrap heap reuse, it is a little different)
tes_global

Functions§

alloc
Allocates memory with the global allocator.
alloc_zeroed
Allocates zero-initialized memory with the global allocator.
dealloc
Deallocates memory with the global allocator.
realloc
Reallocates memory with the global allocator.