Classes | |
struct | SIGACTION |
Functions | |
OS_RETURN_CODE | OS_SendSignalToProcess (NATIVE_PID pid, INT signal) |
OS_RETURN_CODE | OS_SigProcMask (INT how, const SIGSET_T *set, SIGSET_T *oldset) |
OS_RETURN_CODE | OS_SigAction (INT signum, const struct SIGACTION *act, struct SIGACTION *oldact) |
OS_RETURN_CODE | OS_SigSuspend (const SIGSET_T *mask) |
OS_RETURN_CODE | OS_SigPending (const SIGSET_T *set) |
OS_RETURN_CODE | OS_SendSignalToThread (NATIVE_PID pid, NATIVE_TID tid, UINT32 signal) |
|
Send signal to a process. This function is compatible with POSIX kill().
|
|
Send signal to a particular thread inside a process.
|
|
Change the action taken by a process on receipt of a specific signal. This function is compatible with POSIX sigaction().
|
|
Returns the set of signals that are pending for delivery to the calling thread (i.e., the signals which have been raised while blocked). The mask of pending signals is returned in set.
|
|
Change the signal mask, the set of currently blocked signals for the current thread. This function is compatible with POSIX sigprocmask().
|
|
Temporarily replaces the signal mask of the calling process with the mask given by mask and then suspends the process until delivery of a signal whose action is to invoke a signal handler or to terminate a process.
|