Crates.io | buddies |
lib.rs | buddies |
version | 0.0.3 |
source | src |
created_at | 2019-05-13 21:04:43.026445 |
updated_at | 2019-05-14 15:55:28.435743 |
description | A buddy allocator |
homepage | |
repository | https://github.com/araspik/buddies |
max_upload_size | |
id | 134085 |
size | 9,610 |
Buddies provides a low-level and unsafe buddy allocator to work with - however, making it safe is quite simple. All that needs to be done is to store extra information that does the following things:
Buddies::allocate
and
Buddies::free
.It does not require std
, and will remain like this (so that bare-metal
kernels and applications can use it easily).