Skip to content

Commit fab81ad

Browse files
committed
refine mpu::Permissions
1 parent 692fcb1 commit fab81ad

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

kernel/src/platform/mpu.rs

+6
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,17 @@ use flux_support::*;
1111

1212
/// User mode access permissions.
1313
#[derive(Copy, Clone, Debug)]
14+
#[flux_rs::refined_by(r: bool, w: bool, x: bool)]
1415
pub enum Permissions {
16+
#[flux::variant(Permissions[true, true, true])]
1517
ReadWriteExecute,
18+
#[flux::variant(Permissions[true, true, false])]
1619
ReadWriteOnly,
20+
#[flux::variant(Permissions[true, false, true])]
1721
ReadExecuteOnly,
22+
#[flux::variant(Permissions[true, false, false])]
1823
ReadOnly,
24+
#[flux::variant(Permissions[false, false, true])]
1925
ExecuteOnly,
2026
}
2127

0 commit comments

Comments
 (0)