Skip to content

Commit 3006083

Browse files
committed
Minor
1 parent df0a75f commit 3006083

File tree

4 files changed

+1
-9
lines changed

4 files changed

+1
-9
lines changed

Cargo.lock

-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ num_cpus = "1.13.1"
3434
atomic = "0.5.1"
3535
quote = "1.0.20"
3636
syn = "1.0.98"
37-
array-const-fn-init = "0.1.1"
3837
shell-words = "1.1.0"
3938
cargo_metadata = "0.18.1"
4039

hoard/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ crate-type = ["cdylib", "staticlib", "rlib"]
1212
[dependencies]
1313
mallockit = { path = "../mallockit" }
1414
spin = { workspace = true }
15-
array-const-fn-init = { workspace = true }
1615

1716
[features]
1817
default = []

hoard/src/pool.rs

+1
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,7 @@ impl BlockList {
226226

227227
pub struct Pool {
228228
pub global: bool,
229+
// This is a major difference to the original hoard: we lock bins instead of the entire local heap.
229230
blocks: [Mutex<BlockList>; Self::MAX_BINS],
230231
}
231232

0 commit comments

Comments
 (0)