aboutsummaryrefslogtreecommitdiff
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, 0 insertions, 2 deletions
diff --git a/sys/sys/_mutex.h b/sys/sys/_mutex.h
index a8cc6db80bb0..0fc0bc823790 100644
--- a/sys/sys/_mutex.h
+++ b/sys/sys/_mutex.h
@@ -38,8 +38,6 @@ struct mtx {
struct lock_object mtx_object; /* Common lock properties. */
volatile uintptr_t mtx_lock; /* Owner and flags. */
volatile u_int mtx_recurse; /* Number of recursive holds. */
- TAILQ_HEAD(, thread) mtx_blocked; /* Threads blocked on us. */
- LIST_ENTRY(mtx) mtx_contested; /* Next contested mtx. */
#ifdef MUTEX_PROFILING
/*