diff options
author | Richard Braun <rbraun@sceen.net> | 2017-07-21 00:54:31 +0200 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2017-07-21 00:54:54 +0200 |
commit | 83efc94bcc9d239c9ee137227f7c6781bbaffed4 (patch) | |
tree | 6fdb4a1b80d4aa51bbafda6f930f9f222adc4368 /kern/rtmutex.c | |
parent | 7cf6ec406d8484428fd449a288c476e8a94d44fa (diff) | |
parent | 9c38d4c885d459d956ddf5884a22248f3ea1468e (diff) |
Merge branch 'adaptive_spinning'
Diffstat (limited to 'kern/rtmutex.c')
-rw-r--r-- | kern/rtmutex.c | 2 |
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; |