diff --git a/src/runtime2/runtime.rs b/src/runtime2/runtime.rs index 80865946a82159b688217f614d29ba7a73311f6c..9da208a48a371a354cd6ec2d7aece2ff4a5fdf21 100644 --- a/src/runtime2/runtime.rs +++ b/src/runtime2/runtime.rs @@ -236,7 +236,7 @@ impl Drop for Runtime { pub(crate) struct RuntimeInner { pub protocol: ProtocolDescription, components: ComponentStore, - work_queue: Mutex>, + work_queue: Mutex>, // TODO: should be MPMC queue work_condvar: Condvar, active_elements: AtomicU32, // active components and APIs (i.e. component creators) }