mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-06-20 02:11:31 +00:00
take a step back
This commit is contained in:
@ -1,23 +1,10 @@
|
||||
/**
|
||||
* 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
|
||||
*//***/
|
||||
@unsafe declare function malloc(size: usize): usize;
|
||||
@unsafe declare function free(ptr: usize): void;
|
||||
|
||||
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);
|
||||
}
|
||||
@unsafe @global function __memory_allocate(size: usize): usize {
|
||||
return malloc(size);
|
||||
}
|
||||
|
||||
@unsafe @global function __memory_free(ptr: usize): void {
|
||||
free(ptr);
|
||||
}
|
||||
|
Reference in New Issue
Block a user