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 f307415 commit 86f11a5Copy full SHA for 86f11a5
kernel-1100/src/lib.rs
@@ -51,6 +51,7 @@ impl okf::Kernel for Kernel {
51
#[offset(0x22D0F10)]
52
const MOUNTLIST_MTX: StaticMut<Self::Mtx>;
53
const NOCPU: u32 = 0xff;
54
+ const VDIR: c_int = 2;
55
#[offset(0x1531F70)]
56
const VOP_READ: StaticMut<Self::VnodeOp>;
57
#[offset(0x1533A00)]
src/lib.rs
@@ -58,6 +58,7 @@ pub trait Kernel: MappedKernel {
58
const MOUNTLIST: StaticMut<TailQueue<Self::Mount>>;
59
60
const NOCPU: u32;
61
+ const VDIR: c_int;
62
63
const VOP_READDIR: StaticMut<Self::VnodeOp>;
64
const VOP_UNLOCK: StaticMut<Self::VnodeOp>;
0 commit comments