diff options
author | jhb <jhb@FreeBSD.org> | 2001-10-30 20:43:45 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2001-10-30 20:43:45 +0000 |
commit | c955d42b4afcc8475ff4b0115e826fccf9635cdc (patch) | |
tree | e8e9a2f983fa1960d884fbd7967bf65a01b18ab2 | |
parent | ea29bfeb3d52625a3e7d9d8365eb72b32cb29cab (diff) | |
download | FreeBSD-src-c955d42b4afcc8475ff4b0115e826fccf9635cdc.zip FreeBSD-src-c955d42b4afcc8475ff4b0115e826fccf9635cdc.tar.gz |
Threads sit on condition variable wait queue's, not proceses (sic).
-rw-r--r-- | sys/sys/proc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sys/proc.h b/sys/sys/proc.h index 19e6dbd..e2e9f0a 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. */ |