Home
last modified time | relevance | path

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

/DragonOS/kernel/src/process/
H A Dfork.rs99 pub exit_signal: Signal, field
126 exit_signal: Signal::SIGCHLD, in new()
171 args.exit_signal = Signal::SIGCHLD; in fork()
466 pcb.exit_signal.store(Signal::INVALID, Ordering::SeqCst); in copy_process()
476 pcb.exit_signal.store( in copy_process()
477 leader.unwrap().exit_signal.load(Ordering::SeqCst), in copy_process()
484 pcb.exit_signal in copy_process()
485 .store(clone_args.exit_signal, Ordering::SeqCst); in copy_process()
H A Dmod.rs633 exit_signal: AtomicSignal, field
731 exit_signal: AtomicSignal::new(Signal::SIGCHLD), in do_create_pcb()