Deleted Added
full compact
35c35
< * $FreeBSD: head/sys/sys/proc.h 171611 2007-07-27 09:21:18Z attilio $
---
> * $FreeBSD: head/sys/sys/proc.h 172207 2007-09-17 05:31:39Z jeff $
318a319
> #define TDF_INMEM 0x00000004 /* Thread's stack is in memory. */
338c339
< #define TDF_UNUSED22 0x00400000 /* --available-- */
---
> #define TDF_SWAPINREQ 0x00400000 /* Swapin request due to wakeup. */
343a345,347
> #define TDF_ALRMPEND 0x10000000 /* Pending SIGVTALRM needs to be posted. */
> #define TDF_PROFPEND 0x20000000 /* Pending SIGPROF needs to be posted. */
> #define TDF_MACPEND 0x40000000 /* AST-based MAC event pending. */
499d502
< int p_sflag; /* (j) PS_* flags. */
620a624,626
> #define P_INMEM 0x10000000 /* Loaded into memory. */
> #define P_SWAPPINGOUT 0x20000000 /* Process is being swapped out. */
> #define P_SWAPPINGIN 0x40000000 /* Process is being swapped in. */
625,633d630
< /* These flags are kept in p_sflag and are protected with proc slock. */
< #define PS_INMEM 0x00001 /* Loaded into memory. */
< #define PS_ALRMPEND 0x00020 /* Pending SIGVTALRM needs to be posted. */
< #define PS_PROFPEND 0x00040 /* Pending SIGPROF needs to be posted. */
< #define PS_SWAPINREQ 0x00100 /* Swapin request due to wakeup. */
< #define PS_SWAPPINGOUT 0x00200 /* Process is being swapped out. */
< #define PS_SWAPPINGIN 0x04000 /* Process is being swapped in. */
< #define PS_MACPEND 0x08000 /* AST-based MAC event pending. */
<
746c743
< if (((p)->p_sflag & PS_INMEM) == 0) \
---
> if (((p)->p_flag & P_INMEM) == 0) \