We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c650a1 commit 781b8c8Copy full SHA for 781b8c8
kernel-1100/src/lib.rs
@@ -38,6 +38,7 @@ impl okf::Kernel for Kernel {
38
const M_TEMP: StaticMut<Self::Malloc>;
39
const MBF_MNTLSTLOCK: c_int = 2;
40
const MBF_NOWAIT: c_int = 1;
41
+ const MNT_RDONLY: u64 = 0x0000000000000001;
42
#[offset(0x1A6AD60)]
43
const MOUNTLIST: StaticMut<TailQueue<Self::Mount>>;
44
#[offset(0x22D0F10)]
src/lib.rs
@@ -48,6 +48,7 @@ pub trait Kernel: MappedKernel {
48
49
const MBF_MNTLSTLOCK: c_int;
50
const MBF_NOWAIT: c_int;
51
+ const MNT_RDONLY: u64;
52
53
const MOUNTLIST_MTX: StaticMut<Self::Mtx>;
54
const NOCPU: u32;
0 commit comments