Home
last modified time | relevance | path

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

/kernel/liteos_a/kernel/base/include/
Dlos_signal.h108 typedef struct sigaction sigaction_t; typedef
112 sigaction_t act; /* Sigaction data */
163 int OsSigAction(int sig, const sigaction_t *act, sigaction_t *oact);
/kernel/liteos_a/syscall/
Dipc_syscall.c228 int SysSigAction(int sig, const sigaction_t *restrict sa, sigaction_t *restrict old, size_t sigsets… in SysSigAction()
Dlos_syscall.h135 extern int SysSigAction(int sig, const sigaction_t *restrict sa, sigaction_t *restrict old, size_t …
/kernel/liteos_a/kernel/base/ipc/
Dlos_signal.c680 int OsSigAction(int sig, const sigaction_t *act, sigaction_t *oact) in OsSigAction()
683 sigaction_t action; in OsSigAction()
688 if (LOS_ArchCopyFromUser(&action, act, sizeof(sigaction_t)) != LOS_OK) { in OsSigAction()