summaryrefslogtreecommitdiff
path: root/lib/libthr/thread/thr_private.h
diff options
context:
space:
mode:
authorDavid Xu <davidxu@FreeBSD.org>2006-08-08 05:04:43 +0000
committerDavid Xu <davidxu@FreeBSD.org>2006-08-08 05:04:43 +0000
commit065dbdc130d0546419938441ae69f8feb7043553 (patch)
tree0eebfbfd723bbcf8773f873e5dbbe17e432bcd40 /lib/libthr/thread/thr_private.h
parent6b73f08519fa37c41c8b036c411e070d7774346f (diff)
Notes
Diffstat (limited to 'lib/libthr/thread/thr_private.h')
-rw-r--r--lib/libthr/thread/thr_private.h12
1 files changed, 2 insertions, 10 deletions
diff --git a/lib/libthr/thread/thr_private.h b/lib/libthr/thread/thr_private.h
index bb6c999b71e1..4ec4208b5051 100644
--- a/lib/libthr/thread/thr_private.h
+++ b/lib/libthr/thread/thr_private.h
@@ -121,18 +121,10 @@ struct pthread_mutex {
int m_refcount;
/*
- * Used for priority inheritence and protection.
- *
- * m_prio - For priority inheritence, the highest active
- * priority (threads locking the mutex inherit
- * this priority). For priority protection, the
- * ceiling priority of this mutex.
- * m_saved_prio - mutex owners inherited priority before
- * taking the mutex, restored when the owner
- * unlocks the mutex.
+ * Used for priority protection, the ceiling priority of
+ * this mutex.
*/
int m_prio;
- int m_saved_prio;
/*
* Link for list of all mutexes a thread currently owns.