summaryrefslogtreecommitdiff
path: root/kern/turnstile.h
diff options
context:
space:
mode:
Diffstat (limited to 'kern/turnstile.h')
-rw-r--r--kern/turnstile.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/kern/turnstile.h b/kern/turnstile.h
index 8d427db9..6b59dd59 100644
--- a/kern/turnstile.h
+++ b/kern/turnstile.h
@@ -160,10 +160,10 @@ bool turnstile_empty(const struct turnstile *turnstile);
* to prevent unbounded priority inversion.
*
* When bounding the duration of the wait, the caller must pass an absolute
- * time in ticks, and ERROR_TIMEDOUT is returned if that time is reached
- * before the turnstile is signalled. In addition, if a timeout occurs,
- * the calling thread temporarily releases the turnstile before returning,
- * causing other threads to consider the turnstile as empty.
+ * time in ticks, and ETIMEDOUT is returned if that time is reached before
+ * the turnstile is signalled. In addition, if a timeout occurs, the calling
+ * thread temporarily releases the turnstile before returning, causing other
+ * threads to consider the turnstile as empty.
*/
void turnstile_wait(struct turnstile *turnstile, const char *wchan,
struct thread *owner);