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

/darwin-on-arm/xnu/bsd/sys/
H A Dproc.h177 #define P_AFFINITY 0x00010000 /* xxx */ 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 Dkern_sysctl.c589 (cur_proc->p_flag & P_AFFINITY) ? 1 : 0);
592 OSBitAndAtomic(~((uint32_t)P_AFFINITY), &cur_proc->p_flag);
594 OSBitOrAtomic(P_AFFINITY, &cur_proc->p_flag);
3010 cpu_type_t oldcputype = (cur_proc->p_flag & P_AFFINITY) ? CPU_TYPE_POWERPC : CPU_TYPE_I386;
3020 OSBitAndAtomic(~((uint32_t)P_AFFINITY), &cur_proc->p_flag);
3022 OSBitOrAtomic(P_AFFINITY, &cur_proc->p_flag);
H A Dkern_exec.c651 (p->p_flag & P_AFFINITY));
1112 OSBitAndAtomic(~((uint32_t)(P_TRANSLATED | P_AFFINITY)), &p->p_flag);

Completed in 35 milliseconds