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

/macosx-10.5.8/xnu-1228.15.4/bsd/sys/
H A Dproc.h165 #define P_LP64 0x00000004 /* Process is LP64 */ macro
/macosx-10.5.8/xnu-1228.15.4/bsd/kern/
H A Dkern_fork.c502 child_thread = fork_create_child(parent->task, child, TRUE, (parent->p_flag & P_LP64));
506 if (parent->p_flag & P_LP64) {
508 OSBitOrAtomic(P_LP64, (UInt32 *)&child->p_flag);
520 OSBitAndAtomic(~((uint32_t)P_LP64), (UInt32 *)&child->p_flag);
962 child->p_flag = (parent->p_flag & (P_LP64 | P_TRANSLATED | P_AFFINITY));
H A Dproc_info.c371 if ((p->p_flag & P_LP64) == P_LP64)
H A Dkern_exec.c842 OSBitOrAtomic(P_LP64, (UInt32 *)&p->p_flag);
845 OSBitAndAtomic(~((uint32_t)P_LP64), (UInt32 *)&p->p_flag);
H A Dkern_proc.c793 if (p && (p->p_flag & P_LP64))
/macosx-10.5.8/xnu-1228.15.4/bsd/dev/i386/
H A Dfasttrap_isa.c272 unsigned int p_model = (p->p_flag & P_LP64) ? DATAMODEL_LP64 : DATAMODEL_ILP32;

Completed in 51 milliseconds