diff options
author | jhb <jhb@FreeBSD.org> | 2005-01-06 21:11:05 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2005-01-06 21:11:05 +0000 |
commit | 7cfed3921b25946aac9e72c914d9c99fcee8c03b (patch) | |
tree | c9dc4bff6aecf32f2e4bf8c2d43eaeb84e5b249a | |
parent | 437d364a03dc863a24507da04b8bc622c485cb82 (diff) | |
download | FreeBSD-src-7cfed3921b25946aac9e72c914d9c99fcee8c03b.zip FreeBSD-src-7cfed3921b25946aac9e72c914d9c99fcee8c03b.tar.gz |
Bit 0 of td_flags is now used by the priority borrowing flag, so remove
the unused placeholder constant.
-rw-r--r-- | sys/sys/proc.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/sys/proc.h b/sys/sys/proc.h index 6278ae8..52b47efe 100644 --- a/sys/sys/proc.h +++ b/sys/sys/proc.h @@ -328,7 +328,6 @@ struct thread { * To change these you MUST have the scheduler lock. */ #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_SINTR 0x00000008 /* Sleep is interruptible. */ #define TDF_TIMEOUT 0x00000010 /* Timing out during sleep. */ |