Searched refs:P_DELAYIDLESLEEP (Results 1 – 5 of 5) sorted by relevance
193 #define P_DELAYIDLESLEEP 0x00040000 /* Process is marked to delay idle sleep on disk IO */ macro
752 if ((p->p_flag & P_DELAYIDLESLEEP) == P_DELAYIDLESLEEP) { in proc_pidbsdinfo()875 if ((p->p_flag & P_DELAYIDLESLEEP) == P_DELAYIDLESLEEP) { in proc_pidshortbsdinfo()3321 OSBitOrAtomic(P_DELAYIDLESLEEP, &pself->p_flag); in proc_setcontrol()3323 OSBitAndAtomic(~((uint32_t)P_DELAYIDLESLEEP), &pself->p_flag); in proc_setcontrol()
1038 … = (parent_proc->p_flag & (P_LP64 | P_TRANSLATED | P_DISABLE_ASLR | P_DELAYIDLESLEEP | P_SUGID | P… in forkproc()
5064 if ((p->p_flag & P_DELAYIDLESLEEP) == P_DELAYIDLESLEEP) { in posix_spawn()5065 OSBitAndAtomic(~((uint32_t)P_DELAYIDLESLEEP), &p->p_flag); in posix_spawn()
2683 if ((curproc != NULL) && ((curproc->p_flag & P_DELAYIDLESLEEP) == P_DELAYIDLESLEEP)) { in spec_strategy()