Lines Matching defs:psig
454 type = "PSIG";
1333 } *psig = v;
1334 siginfo_t *si = &psig->si;
1337 (void)printf("SIG%s ", signame(psig->ps.signo, 0));
1338 if (psig->ps.action == SIG_DFL)
1341 (void)printf("caught handler=%p mask=(", psig->ps.action);
1344 if (sigismember(&psig->ps.mask, signo)) {
1356 if (psig->ps.code)
1357 printf(" code=0x%x", psig->ps.code);
1358 printf(psig->ps.action == SIG_DFL ? "\n" : ")\n");
1360 case sizeof(*psig):