Searched refs:P_LP64 (Results 1 - 7 of 7) sorted by relevance

/darwin-on-arm/xnu/bsd/kern/
H A Dkern_fork.c953 child_thread = fork_create_child(parent_task, child_proc, inherit_memory, (parent_task == TASK_NULL) ? FALSE : (parent_proc->p_flag & P_LP64));
964 if (parent_proc->p_flag & P_LP64) {
966 OSBitOrAtomic(P_LP64, (UInt32 *)&child_proc->p_flag);
969 OSBitAndAtomic(~((uint32_t)P_LP64), (UInt32 *)&child_proc->p_flag);
1204 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.c955 kernproc->p_flag |= P_LP64;
H A Dproc_info.c521 if ((p->p_flag & P_LP64) == P_LP64)
610 if ((p->p_flag & P_LP64) == P_LP64)
H A Dkern_exec.c849 OSBitOrAtomic(P_LP64, &p->p_flag);
852 OSBitAndAtomic(~((uint32_t)P_LP64), &p->p_flag);
H A Dkern_proc.c849 if (p && (p->p_flag & P_LP64))
/darwin-on-arm/xnu/bsd/sys/
H A Dproc.h157 #define P_LP64 0x00000004 /* Process is LP64 */ macro
/darwin-on-arm/xnu/bsd/dev/i386/
H A Dfasttrap_isa.c275 unsigned int p_model = (p->p_flag & P_LP64) ? DATAMODEL_LP64 : DATAMODEL_ILP32;

Completed in 45 milliseconds