Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add spaskalev/buddy_alloc #225

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -645,6 +645,9 @@ to do with managing C memory lives here.
* [tlsf][531] - Two-Level Segregated Fit allocator; a general-purpose, dynamic
memory allocator designed to meet real-time requirements. [Up-to-date
implementation][532]. [``BSD-3-Clause``][BSD-3-Clause]
* [buddy_alloc][702] - Buddy allocator with predictable storage and runtime costs,
designed to supplement the system's allocator. Complete line+branch test coverage,
resizeable arenas, rellocatable arenas and so on. [``0BSD``][0BSD]

## Multimedia ##

Expand Down Expand Up @@ -1184,6 +1187,7 @@ support for C.
[AGPL-3.0-only]: https://spdx.org/licenses/AGPL-3.0-only.html
[AGPL-3.0-or-later]: https://spdx.org/licenses/AGPL-3.0-or-later.html
[Apache-2.0]: https://spdx.org/licenses/Apache-2.0.html
[0BSD]: https://spdx.org/licenses/0BSD.html
[BSD-1-Clause]: https://spdx.org/licenses/BSD-1-Clause.html
[BSD-2-Clause]: https://spdx.org/licenses/BSD-2-Clause.html
[BSD-3-Clause]: https://spdx.org/licenses/BSD-3-Clause.html
Expand Down Expand Up @@ -1832,4 +1836,4 @@ support for C.
[622]: https://remove-to-waste.info
[700]: https://viewsourcecode.org/snaptoken/kilo/
[701]: https://wiki.gnome.org/Projects/GLib

[702]: https://github.com/spaskalev/buddy_alloc