Bit 0 of td_flags is now used by the priority borrowing flag, so remove

the unused placeholder constant.
This commit is contained in:
jhb 2005-01-06 21:11:05 +00:00
parent 437d364a03
commit 7cfed3921b

View File

@ -328,7 +328,6 @@ struct thread {
* To change these you MUST have the scheduler lock. * To change these you MUST have the scheduler lock.
*/ */
#define TDF_BORROWING 0x00000001 /* Thread is borrowing pri from another. */ #define TDF_BORROWING 0x00000001 /* Thread is borrowing pri from another. */
#define TDF_UNUSED0 0x00000001 /* --available -- */
#define TDF_INPANIC 0x00000002 /* Caused a panic, let it drive crashdump. */ #define TDF_INPANIC 0x00000002 /* Caused a panic, let it drive crashdump. */
#define TDF_SINTR 0x00000008 /* Sleep is interruptible. */ #define TDF_SINTR 0x00000008 /* Sleep is interruptible. */
#define TDF_TIMEOUT 0x00000010 /* Timing out during sleep. */ #define TDF_TIMEOUT 0x00000010 /* Timing out during sleep. */