mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-04-27 16:02:16 +00:00
24 lines
529 B
TypeScript
24 lines
529 B
TypeScript
/**
|
|
* System Memory Allocator.
|
|
*
|
|
* Uses the environment's malloc and free implementations, i.e., when linking with other C-like
|
|
* programs that already provide these.
|
|
*
|
|
* @module std/assembly/allocator/system
|
|
*//***/
|
|
|
|
declare function malloc(size: usize): usize;
|
|
declare function free(ptr: usize): void;
|
|
|
|
// Memory allocator interface
|
|
@global namespace memory {
|
|
|
|
@inline export function allocate(size: usize): usize {
|
|
return malloc(size);
|
|
}
|
|
|
|
@inline export function free(ptr: usize): void {
|
|
free(ptr);
|
|
}
|
|
}
|