Get started on supervision trees

This commit is contained in:
Nadja Reitzenstein 2022-06-23 17:28:41 +02:00
parent 7e113bab47
commit 3075e1c027
4 changed files with 4 additions and 2 deletions

1
Cargo.lock generated
View File

@ -1128,7 +1128,6 @@ dependencies = [
"parking_lot", "parking_lot",
"pin-utils", "pin-utils",
"rand", "rand",
"slab",
"tracing", "tracing",
"tracing-subscriber", "tracing-subscriber",
] ]

View File

@ -39,7 +39,6 @@ lazy_static = "1.4"
libc = "0.2" libc = "0.2"
num_cpus = "1.13" num_cpus = "1.13"
pin-utils = "0.1.0" pin-utils = "0.1.0"
slab = "0.4"
parking_lot = "0.12" parking_lot = "0.12"
# Allocator # Allocator

View File

@ -32,6 +32,7 @@ pub mod manage;
pub mod placement; pub mod placement;
pub mod pool; pub mod pool;
pub mod run; pub mod run;
mod supervision;
mod thread_manager; mod thread_manager;
mod worker; mod worker;

View File

@ -0,0 +1,3 @@
pub(crate) struct SupervisionRegistry {}
impl SupervisionRegistry {}