Searched refs:ill_act (Results 1 - 2 of 2) sorted by relevance

/external/openssl/crypto/
H A Ds390xcap.c17 struct sigaction ill_act,oact; local
23 memset(&ill_act,0,sizeof(ill_act));
24 ill_act.sa_handler = ill_handler;
25 sigfillset(&ill_act.sa_mask);
26 sigdelset(&ill_act.sa_mask,SIGILL);
27 sigdelset(&ill_act.sa_mask,SIGTRAP);
28 sigprocmask(SIG_SETMASK,&ill_act.sa_mask,&oset);
29 sigaction (SIGILL,&ill_act,&oact);
H A Darmcap.c74 struct sigaction ill_oact,ill_act; local
96 memset(&ill_act,0,sizeof(ill_act));
97 ill_act.sa_handler = ill_handler;
98 ill_act.sa_mask = all_masked;
100 sigprocmask(SIG_SETMASK,&ill_act.sa_mask,&oset);
101 sigaction(SIGILL,&ill_act,&ill_oact);

Completed in 1245 milliseconds