mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-30 13:43:55 +00:00
Fix spurious bitflags usage
This commit is contained in:
committed by
Tate, Hongliang Tian
parent
18f601dc79
commit
901cbebe44
@ -131,7 +131,7 @@ impl Waiter {
|
||||
|
||||
bitflags! {
|
||||
pub struct WaiterFlag: u32 {
|
||||
const EXCLUSIVE = 0x1;
|
||||
const INTERRUPTIABLE = 0x10;
|
||||
const EXCLUSIVE = 1 << 0;
|
||||
const INTERRUPTIABLE = 1 << 1;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user