summaryrefslogtreecommitdiffstats
path: root/sys/sys/_mutex.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/sys/_mutex.h')
-rw-r--r--sys/sys/_mutex.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sys/_mutex.h b/sys/sys/_mutex.h
index 539e402..82f3648 100644
--- a/sys/sys/_mutex.h
+++ b/sys/sys/_mutex.h
@@ -40,7 +40,7 @@ struct mtx {
volatile uintptr_t mtx_lock; /* owner (and state for sleep locks) */
volatile u_int mtx_recurse; /* number of recursive holds */
critical_t mtx_savecrit; /* saved flags (for spin locks) */
- TAILQ_HEAD(, proc) mtx_blocked; /* threads blocked on this lock */
+ TAILQ_HEAD(, thread) mtx_blocked; /* threads blocked on this lock */
LIST_ENTRY(mtx) mtx_contested; /* list of all contested locks */
};
OpenPOWER on IntegriCloud