Home
last modified time | relevance | path

Searched refs:LockedZeroInode (Results 1 – 2 of 2) sorted by relevance

/DragonOS/kernel/src/filesystem/devfs/
H A Dzero_dev.rs23 self_ref: Weak<LockedZeroInode>,
31 pub struct LockedZeroInode(SpinLock<ZeroInode>); struct
33 impl LockedZeroInode { implementation
57 let result = Arc::new(LockedZeroInode(SpinLock::new(inode))); in new()
64 impl DeviceINode for LockedZeroInode { implementation
70 impl IndexNode for LockedZeroInode { implementation
H A Dmod.rs107 use zero_dev::LockedZeroInode; in register_bultinin_device()
113 .add_dev("zero", LockedZeroInode::new()) in register_bultinin_device()