summaryrefslogtreecommitdiff
path: root/kern/rtmutex.c
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2017-07-21 00:54:31 +0200
committerRichard Braun <rbraun@sceen.net>2017-07-21 00:54:54 +0200
commit83efc94bcc9d239c9ee137227f7c6781bbaffed4 (patch)
tree6fdb4a1b80d4aa51bbafda6f930f9f222adc4368 /kern/rtmutex.c
parent7cf6ec406d8484428fd449a288c476e8a94d44fa (diff)
parent9c38d4c885d459d956ddf5884a22248f3ea1468e (diff)
Merge branch 'adaptive_spinning'
Diffstat (limited to 'kern/rtmutex.c')
-rw-r--r--kern/rtmutex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kern/rtmutex.c b/kern/rtmutex.c
index e78c3899..fcf5f358 100644
--- a/kern/rtmutex.c
+++ b/kern/rtmutex.c
@@ -36,7 +36,7 @@ void
rtmutex_lock_slow(struct rtmutex *rtmutex)
{
struct turnstile *turnstile;
- uintptr_t owner, prev_owner;
+ uintptr_t owner, prev_owner; /* TODO Review names */
struct thread *thread;
uintptr_t bits;