WIP: Implement userspace-driven shutdown.

This commit is contained in:
4lDO2
2021-03-10 14:06:43 +01:00
parent 64b2dd238a
commit 7ac5bdbae0
9 changed files with 203 additions and 93 deletions

View File

@@ -10,7 +10,7 @@ pub struct WaitCondition {
}
impl WaitCondition {
pub fn new() -> WaitCondition {
pub const fn new() -> WaitCondition {
WaitCondition {
contexts: Mutex::new(Vec::new())
}