-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathejercicio_6.c
64 lines (47 loc) · 1.24 KB
/
ejercicio_6.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#include <stdio.h>
#include <unistd.h>
#include <signal.h>
#include <string.h>
#include <sys/types.h>
#include <stdlib.h>
#include <stdbool.h>
sigset_t mask, pending;
void signal_handler (int sig) {
if (sig == SIGINT) {
printf("\nSeñales bloqueadas:\n");
sigpending(&pending);
for (int i = 1; i <= 20; i++) {
if(sigismember(&pending, i))
fprintf(stderr, "INT: %d, %s\n", i, strsignal(i));
}
}
}
int main() {
int valor;
bool corriendo = true;
sigemptyset(&mask);
for (int i = 1; i <= 60; i++) {
if (i != SIGINT)
sigaddset(&mask, i);
}
//sigaddset(&mask, SIGTERM);
//sigaddset(&mask, SIGQUIT);
//sigaddset(&mask, SIGTSTP);
//sigaddset(&mask, SIGSEGV);
sigprocmask(SIG_BLOCK, &mask, 0);
signal(SIGINT, signal_handler);
char numeros[100];
char* ptr;
printf("Ingrese 2 para ver seniales bloqueadas: \n");
while (corriendo) {
fprintf(stderr, "Ingrese el numero de la senial a bloquear: ");
fgets(numeros, 100, stdin);
long int valorN = strtol(numeros, &ptr, 10);
if (valorN == 0) {
printf("Ingrese un numero de 1 a 60\n");
exit(0);
}
kill(getpid(), valorN);
}
return 0;
}