22 lines
608 B
TypeScript
Raw Normal View History

2018-02-02 04:21:06 +01:00
///////////////////////// Emscripten Memory Allocator //////////////////////////
// Uses Emscripten's exported _malloc and _free implementations, i.e., when
// linking with Emscripten-compiled programs that already provide these.
// Differs from 'system' in that their names are prefixed with an underscore.
declare function _malloc(size: usize): usize;
declare function _free(ptr: usize): void;
2018-02-17 11:09:22 +01:00
@global
2018-02-02 04:21:06 +01:00
export function allocate_memory(size: usize): usize {
return _malloc(size);
}
2018-02-17 11:09:22 +01:00
@global
2018-02-02 04:21:06 +01:00
export function free_memory(ptr: usize): void {
_free(ptr);
}
2018-02-17 11:09:22 +01:00
@global
export { reset_memory } from "./none";