Home
last modified time | relevance | path

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

/DragonOS/kernel/src/arch/riscv64/ipc/
H A Dsignal.rs219 const SA_RESTORER =0x04000000; constant
220 …Self::SA_RESETHAND.bits()|Self::SA_RESTART.bits()|Self::SA_SIGINFO.bits()|Self::SA_RESTORER.bits();
/DragonOS/kernel/src/arch/x86_64/ipc/
H A Dsignal.rs236 const SA_RESTORER =0x04000000; constant
237 …Self::SA_RESETHAND.bits()|Self::SA_RESTART.bits()|Self::SA_SIGINFO.bits()|Self::SA_RESTORER.bits();
579 if sigaction.flags().contains(SigFlags::SA_RESTORER) { in setup_frame()
/DragonOS/kernel/src/ipc/
H A Dsyscall.rs179 new_ka.flags_mut().insert(SigFlags::SA_RESTORER); in sigaction()