Searched refs:p_sigacts (Results 1 - 12 of 12) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/bsd/kern/
H A Dkern_fork.c825 FREE_ZONE(p->p_sigacts, sizeof *p->p_sigacts, M_SIGACTS);
874 MALLOC_ZONE(child->p_sigacts, struct sigacts *,
875 sizeof *child->p_sigacts, M_SIGACTS, M_WAITOK);
876 if (child->p_sigacts == NULL) {
877 printf("forkproc: M_SUBPROC zone exhausted (p_sigacts)\n");
885 FREE_ZONE(child->p_sigacts, sizeof *child->p_sigacts, M_SIGACTS);
960 * The p_stats and p_sigacts substructs are set in vm_fork.
1015 if (parent->p_sigacts !
[all...]
H A Dkern_synch.c99 if (p->p_sigacts->ps_sigintr & sigmask(sig))
197 if (p->p_sigacts->ps_sigintr & sigmask(sig))
253 if (p->p_sigacts->ps_sigintr & sigmask(sig))
H A Dkern_exit.c679 FREE_ZONE(p->p_sigacts, sizeof *p->p_sigacts, M_SIGACTS);
680 p->p_sigacts = NULL;
1827 FREE_ZONE(p->p_sigacts, sizeof *p->p_sigacts, M_SIGACTS);
1828 p->p_sigacts = NULL;
H A Dkern_sig.c331 struct sigacts *ps = p->p_sigacts;
513 struct sigacts *ps = p->p_sigacts;
616 struct sigacts *ps = p->p_sigacts;
2182 switch ((long)p->p_sigacts->ps_sigact[signum]) {
2350 switch ((long)p->p_sigacts->ps_sigact[signum]) {
2448 struct sigacts *ps = p->p_sigacts;
2490 p->p_sigacts->ps_sig = signum;
H A Dbsd_init.c526 p->p_sigacts = &sigacts0;
H A Dkern_sysctl.c1447 exp->p_sigacts = p->p_sigacts;
1512 exp->p_sigacts = CAST_USER_ADDR_T(p->p_sigacts);
/macosx-10.5.8/xnu-1228.15.4/bsd/sys/
H A Dproc.h111 struct sigacts *p_sigacts; /* Signal actions, state (PROC ONLY). */ member in struct:extern_proc
H A Dsignalvar.h114 #define SIGACTION(p, sig) (p->p_sigacts->ps_sigact[(sig)])
H A Dproc_internal.h215 struct sigacts *p_sigacts; /* Signal actions, state (PL) */ member in struct:proc
428 user_addr_t p_sigacts; /* Signal actions, state (PROC ONLY). */ member in struct:user_extern_proc
/macosx-10.5.8/xnu-1228.15.4/bsd/dev/ppc/
H A Dunix_signal.c195 struct sigacts *ps = p->p_sigacts;
219 if (p->p_sigacts->ps_siginfo & sigmask(sig)) {
239 (p->p_sigacts->ps_64regset & sigmask(sig))) {
719 struct sigacts *ps = p->p_sigacts;
/macosx-10.5.8/xnu-1228.15.4/bsd/dev/i386/
H A Dunix_signal.c118 struct sigacts *ps = p->p_sigacts;
131 if (p->p_sigacts->ps_siginfo & sigmask(sig))
/macosx-10.5.8/xnu-1228.15.4/bsd/uxkern/
H A Dux_exception.c315 ps = p->p_sigacts;

Completed in 160 milliseconds