mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-04-26 07:22:21 +00:00
13 lines
319 B
TypeScript
13 lines
319 B
TypeScript
////////////// TLSF (Two-Level Segregate Fit) Memory Allocator ////////////////
|
|
|
|
// Re-export for now, so there's just one source file being worked on
|
|
|
|
export {
|
|
allocate_memory,
|
|
free_memory
|
|
} from "../../../examples/tlsf/assembly/tlsf";
|
|
|
|
export function reset_memory(): void {
|
|
throw new Error("not supported");
|
|
}
|