-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added specialized autochunking allocator to support dynamic allocations
The autochunking allocator has some interesting properties: - O(1) allocation and deallocation - zero fragmentation for same-sized allocations - no external fragmentation over time The biggest downside of the allocator is that the allocator performs no coalescing. This can create excessive fragmentation when used with a large number of different-sized allocation.
- Loading branch information
Showing
2 changed files
with
104 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters