Home
last modified time | relevance | path

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

/xnu-11215.81.4/bsd/sys/
H A Dproc.h182 #define P_DISABLE_ASLR 0x00001000 /* Disable address space layout randomization */ macro
/xnu-11215.81.4/bsd/kern/
H A Dkern_fork.c1041 …child_proc->p_flag = (parent_proc->p_flag & (P_LP64 | P_TRANSLATED | P_DISABLE_ASLR | P_DELAYIDLES… in forkproc()
1043 …child_proc->p_flag = (parent_proc->p_flag & (P_LP64 | P_TRANSLATED | P_DISABLE_ASLR | P_SUGID | P_… in forkproc()
H A Dbsd_init.c627 kernproc->p_flag |= P_DISABLE_ASLR; in bsd_init()
H A Dkern_exec.c4238 OSBitOrAtomic(P_DISABLE_ASLR, &p->p_flag); in posix_spawn()
4274 if (p->p_flag & P_DISABLE_ASLR) { in posix_spawn()
5269 …imgp->ip_flags = (is_64 ? IMGPF_WAS_64BIT_ADDR : IMGPF_NONE) | ((p->p_flag & P_DISABLE_ASLR) ? IMG… in __mac_execve()