Home
last modified time | relevance | path

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

/DragonOS-0.1.7/kernel/src/driver/base/platform/
Dmod.rs266 pub struct LockedPlatform(SpinLock<Platform>); struct
268 impl LockedPlatform { implementation
272 pub fn new() -> LockedPlatform { in new()
273 LockedPlatform(SpinLock::new(Platform::new())) in new()
350 impl Device for LockedPlatform { implementation
376 impl Bus for LockedPlatform {} implementation
383 let platform_device: Arc<LockedPlatform> = Arc::new(LockedPlatform::new()); in platform_bus_init()