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 9f31f96 commit 4a8a16eCopy full SHA for 4a8a16e
kernel-1100/src/lib.rs
@@ -63,6 +63,7 @@ impl okf::Kernel for Kernel {
63
const VOP_READDIR: StaticMut<Self::VnodeOp>;
64
#[offset(0x1534360)]
65
const VOP_UNLOCK: StaticMut<Self::VnodeOp>;
66
+ const VREG: c_int = 1;
67
68
type ComponentName = ComponentName;
69
type File = File;
src/lib.rs
@@ -67,6 +67,7 @@ pub trait Kernel: MappedKernel {
const VOP_READ: StaticMut<Self::VnodeOp>;
70
+ const VREG: c_int;
71
72
type ComponentName: ComponentName<Self>;
73
type File: File;
0 commit comments