Searched refs:stop (Results 1 – 12 of 12) sorted by relevance
/DragonOS/kernel/.cargo/ |
H A D | config.toml | 9 rustflags = ["-Clink-args=-znostart-stop-gc"] 10 rustdocflags = ["-Clink-args=-znostart-stop-gc"]
|
/DragonOS/docs/kernel/process_management/ |
H A D | kthread.md | 12   当内核其他模块想要停止一个内核线程的时候,可以调用`KernelThreadMechanism::stop()`函数,等待内核线程的退出,然后获得返回值并清理内核线程的pcb。
|
/DragonOS/docs/kernel/ipc/ |
H A D | signal.md | 53 │ do_signal ├────────► │ stop process B.│ │
|
/DragonOS/kernel/src/driver/input/serio/ |
H A D | serio_device.rs | 32 fn stop(&self, device: &Arc<dyn SerioDevice>) -> Result<(), SystemError>; in stop() method
|
/DragonOS/kernel/src/driver/disk/ahci/ |
H A D | hba.rs | 157 pub fn stop(&mut self) { in stop() method 190 self.stop(); // 先暂停端口 in init()
|
/DragonOS/kernel/src/driver/input/serio/i8042/ |
H A D | i8042_ports.rs | 193 fn stop(&self, device: &Arc<dyn SerioDevice>) -> Result<(), SystemError> { in stop() method
|
/DragonOS/kernel/src/driver/tty/ |
H A D | tty_core.rs | 157 let _ = self.stop(self.core()); in tty_stop() 586 fn stop(&self, tty: &TtyCoreData) -> Result<(), SystemError> { in stop() method 587 return self.core().tty_driver.driver_funcs().stop(tty); in stop()
|
H A D | tty_driver.rs | 484 fn stop(&self, _tty: &TtyCoreData) -> Result<(), SystemError> { in stop() method
|
/DragonOS/kernel/src/driver/tty/pty/ |
H A D | unix98pty.rs | 179 fn stop(&self, core: &TtyCoreData) -> Result<(), SystemError> { in stop() method
|
/DragonOS/kernel/src/exception/ |
H A D | manage.rs | 176 KernelThreadMechanism::stop(&thread_pcb).ok(); in inner_setup_irq() 183 KernelThreadMechanism::stop(&thread_pcb).ok(); in inner_setup_irq()
|
/DragonOS/kernel/src/process/ |
H A D | kthread.rs | 381 pub fn stop(pcb: &Arc<ProcessControlBlock>) -> Result<usize, SystemError> { in stop() method
|
/DragonOS/kernel/src/driver/input/ps2_mouse/ |
H A D | ps_mouse_device.rs | 521 fn stop( in stop() method
|