Skip to content
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions api/axfeat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ page-alloc-4g = ["axalloc/page-alloc-4g"] # up to 4G memory capacity
paging = ["alloc", "axhal/paging", "axruntime/paging"]
tls = ["alloc", "axhal/tls", "axruntime/tls", "axtask?/tls"]
dma = ["alloc", "paging"]
page-alloc-buddy = ["axalloc/buddy-page"]

# Multi-threading and scheduler
multitask = ["alloc", "axtask/multitask", "axsync/multitask", "axruntime/multitask"]
Expand Down
1 change: 1 addition & 0 deletions modules/axalloc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ slab = ["allocator/slab"]
buddy = ["allocator/buddy"]
page-alloc-64g = ["allocator/page-alloc-64g"] # Support up to 64G memory capacity
page-alloc-4g = ["allocator/page-alloc-4g"] # Support up to 4G memory capacity
buddy-page = []

[dependencies]
log = "=0.4.21"
Expand Down
Loading
Loading