✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Dado el siguiente código:
...
sigset_t set, o_set;
sigemptyset(&set);
sigaddset(&set, SIGUSER1);
sigaddset(&set, SIGALRM);
if (sigprocmask(SIG_BLOCK, &set, &o_set) < 0) {
// Gestionar error
}
...
¿Qué pasará si se recibe la señal SIGUSER1
?
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!