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

/darwin-on-arm/xnu/bsd/sys/
H A Dproc.h170 #define P_DISABLE_ASLR 0x00001000 /* Disable address space layout randomization */ macro
/darwin-on-arm/xnu/bsd/kern/
H A Dkern_fork.c1204 child_proc->p_flag = (parent_proc->p_flag & (P_LP64 | P_TRANSLATED | P_AFFINITY | P_DISABLE_ASLR | P_DELAYIDLESLEEP));
1206 child_proc->p_flag = (parent_proc->p_flag & (P_LP64 | P_TRANSLATED | P_AFFINITY | P_DISABLE_ASLR));
H A Dbsd_init.c549 kernproc->p_flag |= P_DISABLE_ASLR;
H A Dkern_exec.c1927 OSBitOrAtomic(P_DISABLE_ASLR, &p->p_flag);
1940 * P_DISABLE_ASLR was inherited from the parent process.
1942 if (p->p_flag & P_DISABLE_ASLR)
2322 imgp->ip_flags = (is_64 ? IMGPF_WAS_64BIT : IMGPF_NONE) | ((p->p_flag & P_DISABLE_ASLR) ? IMGPF_DISABLE_ASLR : IMGPF_NONE);

Completed in 78 milliseconds