Home
last modified time | relevance | path

Searched refs:P2_ASLR_ENABLE (Results 1 – 4 of 4) sorted by relevance

/freebsd/sys/kern/
H A Dkern_procctl.c777 p->p_flag2 |= P2_ASLR_ENABLE; in aslr_ctl()
781 p->p_flag2 &= ~P2_ASLR_ENABLE; in aslr_ctl()
784 p->p_flag2 &= ~(P2_ASLR_ENABLE | P2_ASLR_DISABLE); in aslr_ctl()
798 switch (p->p_flag2 & (P2_ASLR_ENABLE | P2_ASLR_DISABLE)) { in aslr_status()
802 case P2_ASLR_ENABLE: in aslr_status()
H A Dimgact_elf.c1295 imgp->proc->p_flag2 &= ~(P2_ASLR_ENABLE | P2_ASLR_DISABLE | in __CONCAT()
1318 (imgp->proc->p_flag2 & P2_ASLR_ENABLE) != 0) in __CONCAT()
1329 } else if ((imgp->proc->p_flag2 & P2_ASLR_ENABLE) != 0 || in __CONCAT()
H A Dkern_fork.c560 p2->p_flag2 = p1->p_flag2 & (P2_ASLR_DISABLE | P2_ASLR_ENABLE | in do_fork()
/freebsd/sys/sys/
H A Dproc.h877 #define P2_ASLR_ENABLE 0x00000040 /* Force enable ASLR. */ macro