Home
last modified time | relevance | path

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

/DragonOS/docs/kernel/process_management/
H A Dkthread.md14   内核线程应当经常检查`KernelThreadMechanism::should_stop()`的结果,以确定其是否要退出。当检测到需要退出时,内核线程返回一个返回码,即可退…
/DragonOS/tools/debugging/logmonitor/src/backend/monitor/
H A Dmm.rs193 if self.should_stop() { in process_logs()
272 fn should_stop(&self) -> bool { in should_stop() method
/DragonOS/kernel/src/process/
H A Dkthread.rs428 pub fn should_stop(pcb: &Arc<ProcessControlBlock>) -> bool { in should_stop() method
513 if !KernelThreadMechanism::should_stop(&ProcessManager::current_pcb()) { in kernel_thread_bootstrap_stage2()
/DragonOS/kernel/src/time/
H A Dclocksource.rs952 if KernelThreadMechanism::should_stop(&ProcessManager::current_pcb()) { in clocksource_watchdog_kthread()