Changeset View
Changeset View
Standalone View
Standalone View
sys/sys/proc.h
| Show First 20 Lines • Show All 561 Lines • ▼ Show 20 Lines | |||||
| #define TDP_UIOHELD 0x10000000 /* Current uio has pages held in td_ma */ | #define TDP_UIOHELD 0x10000000 /* Current uio has pages held in td_ma */ | ||||
| #define TDP_EFIRT 0x20000000 /* In firmware (EFI RT) call */ | #define TDP_EFIRT 0x20000000 /* In firmware (EFI RT) call */ | ||||
| #define TDP_EXECVMSPC 0x40000000 /* Execve destroyed old vmspace */ | #define TDP_EXECVMSPC 0x40000000 /* Execve destroyed old vmspace */ | ||||
| #define TDP_SIGFASTPENDING 0x80000000 /* Pending signal due to sigfastblock */ | #define TDP_SIGFASTPENDING 0x80000000 /* Pending signal due to sigfastblock */ | ||||
| #define TDP2_SBPAGES 0x00000001 /* Owns sbusy on some pages */ | #define TDP2_SBPAGES 0x00000001 /* Owns sbusy on some pages */ | ||||
| #define TDP2_COMPAT32RB 0x00000002 /* compat32 ABI for robust lists */ | #define TDP2_COMPAT32RB 0x00000002 /* compat32 ABI for robust lists */ | ||||
| #define TDP2_ACCT 0x00000004 /* Doing accounting */ | #define TDP2_ACCT 0x00000004 /* Doing accounting */ | ||||
| #define TDP2_SAN_QUIET 0x00000008 /* Disable warnings from K(A|M)SAN */ | |||||
| /* | /* | ||||
| * Reasons that the current thread can not be run yet. | * Reasons that the current thread can not be run yet. | ||||
| * More than one may apply. | * More than one may apply. | ||||
| */ | */ | ||||
| #define TDI_SUSPENDED 0x0001 /* On suspension queue. */ | #define TDI_SUSPENDED 0x0001 /* On suspension queue. */ | ||||
| #define TDI_SLEEPING 0x0002 /* Actually asleep! (tricky). */ | #define TDI_SLEEPING 0x0002 /* Actually asleep! (tricky). */ | ||||
| #define TDI_LOCK 0x0008 /* Stopped on a lock. */ | #define TDI_LOCK 0x0008 /* Stopped on a lock. */ | ||||
| ▲ Show 20 Lines • Show All 763 Lines • Show Last 20 Lines | |||||