Cool Idea: custom memory allocator #34
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
rash's memory usage can be split into two major parts: long term storage (commands history, shell variables, etc.), and short term storage, (lexer tokens, preprocessed strings, etc.).
Wouldn't it be cool if rash had a custom memory allocator that stores long term things in separate pages from short term things to prevent memory fragmentation?