* @brief Modifies or retrieves the signal mask of the calling thread. * * The `pthread_sigmask` function allows a thread to block, unblock, or examine the signals in its signal mask. * Signals that are blocked are not delivered to the thread until they are unblocked. * * @param[in] how * Specifies how the signal mask is modified. Possible values: * - `SIG_BLOCK`: Add the signals in `set
| 1145 | * @see sigprocmask, sigaction, pthread_kill |
| 1146 | */ |
| 1147 | int pthread_sigmask(int how, const sigset_t *set, sigset_t *oset) |
| 1148 | { |
| 1149 | return sigprocmask(how, set, oset); |
| 1150 | } |
| 1151 | #endif |
| 1152 | |
| 1153 | /** |
no test coverage detected