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.rs102 pub exit_signal: Signal, field
129 exit_signal: Signal::SIGCHLD, in new()
174 args.exit_signal = Signal::SIGCHLD; in fork()
508 pcb.exit_signal.store(Signal::INVALID, Ordering::SeqCst); in copy_process()
518 pcb.exit_signal.store( in copy_process()
519 leader.unwrap().exit_signal.load(Ordering::SeqCst), in copy_process()
526 pcb.exit_signal in copy_process()
527 .store(clone_args.exit_signal, Ordering::SeqCst); in copy_process()
H A Dmod.rs640 exit_signal: AtomicSignal, field
745 exit_signal: AtomicSignal::new(Signal::SIGCHLD), in do_create_pcb()