aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2005-01-06 21:11:05 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2005-01-06 21:11:05 +0000
commitf019a174c519aa93270c956ac62b6a41cd580c0c (patch)
treec9dc4bff6aecf32f2e4bf8c2d43eaeb84e5b249a /sys
parentdf2e33bf4228ad8489fd46aa7624e916a1662548 (diff)
downloadsrc-f019a174c519aa93270c956ac62b6a41cd580c0c.tar.gz
src-f019a174c519aa93270c956ac62b6a41cd580c0c.zip
Bit 0 of td_flags is now used by the priority borrowing flag, so remove
the unused placeholder constant.
Notes
Notes: svn path=/head/; revision=139786
Diffstat (limited to 'sys')
-rw-r--r--sys/sys/proc.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/sys/proc.h b/sys/sys/proc.h
index 6278ae8f50e8..52b47efe4a2e 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. */