![]() |
posix-next API 0.1.0
Out-of-tree Zephyr POSIX module
|
Signal action structure used with sigaction(). More...
#include <zephyr/posix/posix_signal.h>

Data Fields | ||
| union { | ||
| void(* sa_handler )(int sig) | ||
| Simple handler (SA_SIGINFO not set). More... | ||
| void(* sa_sigaction )(int sig, siginfo_t *info, void *context) | ||
| Extended handler (SA_SIGINFO set). More... | ||
| }; | ||
| sigset_t | sa_mask | |
| Signals blocked during handler execution. | ||
| int | sa_flags | |
| Flags modifying signal behaviour (SA_* constants). | ||
Signal action structure used with sigaction().
| int sigaction::sa_flags |
| void(* sigaction::sa_handler) (int sig) |
| sigset_t sigaction::sa_mask |
| void(* sigaction::sa_sigaction) (int sig, siginfo_t *info, void *context) |