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 5cefe0a commit b6c1d97Copy full SHA for b6c1d97
kernel-1100/src/lib.rs
@@ -41,6 +41,7 @@ impl okf::Kernel for Kernel {
41
const EIO: NonZero<c_int> = unsafe { NonZero::new_unchecked(5) };
42
const LK_EXCLUSIVE: c_int = 0x80000;
43
const LK_SHARED: c_int = 0x200000;
44
+ const LOOKUP: u64 = 0;
45
#[offset(0x15415B0)]
46
const M_TEMP: StaticMut<Self::Malloc>;
47
const MBF_MNTLSTLOCK: c_int = 2;
src/lib.rs
@@ -51,6 +51,7 @@ pub trait Kernel: MappedKernel {
51
const EIO: NonZero<c_int>;
52
const LK_EXCLUSIVE: c_int;
53
const LK_SHARED: c_int;
54
+ const LOOKUP: u64;
55
56
const MBF_MNTLSTLOCK: c_int;
57
const MBF_NOWAIT: c_int;
0 commit comments