Searched refs:CS_KILL (Results 1 - 3 of 3) sorted by relevance

/darwin-on-arm/xnu/bsd/sys/
H A Dcodesign.h37 #define CS_KILL 0x0200 /* kill process if it becomes invalid */ macro
39 #define CS_EXEC_SET_KILL 0x2000 /* set CS_KILL on any exec'ed process */
/darwin-on-arm/xnu/bsd/kern/
H A Dkern_proc.c1809 if ((pt->p_csflags & CS_KILL) == CS_KILL) {
1814 "p=%d[%s] honoring CS_KILL, final status 0x%x\n",
1839 pt->p_csflags |= CS_KILL;
2733 p->p_csflags &= ~(CS_KILL | CS_HARD | CS_VALID);
2737 return (p->p_csflags & (CS_KILL | CS_HARD)) == 0;
2757 p->p_csflags |= CS_KILL;
2761 /* CS_KILL triggers us to send a kill signal. Nothing else. */
2762 if (p->p_csflags & CS_KILL) {
2767 "p=%d[%s] honoring CS_KILL, fina
[all...]
H A Dkern_exec.c882 CS_HARD|CS_KILL|CS_EXEC_SET_HARD|CS_EXEC_SET_KILL);
890 imgp->ip_csflags |= CS_KILL;
3856 if(p->p_csflags & (CS_HARD|CS_KILL)) {

Completed in 37 milliseconds