From bd4e567f41e82ffe19074fb0f9767802025eb031 Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Tue, 30 Oct 2001 20:43:45 +0000 Subject: [PATCH] Threads sit on condition variable wait queue's, not proceses (sic). --- sys/sys/proc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/sys/proc.h b/sys/sys/proc.h index 19e6dbdcba6..e2e9f0add52 100644 --- a/sys/sys/proc.h +++ b/sys/sys/proc.h @@ -485,7 +485,7 @@ struct proc { #define TDF_SINTR 0x00008 /* Sleep is interruptible. */ #define TDF_TIMEOUT 0x00010 /* Timing out during sleep. */ #define TDF_SELECT 0x00040 /* Selecting; wakeup/waiting danger. */ -#define TDF_CVWAITQ 0x00080 /* Proces is on a cv_waitq (not slpq). */ +#define TDF_CVWAITQ 0x00080 /* Thread is on a cv_waitq (not slpq). */ #define TDF_TIMOFAIL 0x01000 /* Timeout from sleep after we were awake. */ #define TDF_DEADLKTREAT 0x800000 /* Lock aquisition - deadlock treatment. */