diff options
author | Richard Braun <rbraun@sceen.net> | 2014-01-03 23:54:23 +0100 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2014-01-03 23:54:23 +0100 |
commit | b53c5990ccc688e03d120c87940c7024eaca4813 (patch) | |
tree | 31f930608f9f140e6bccc8f2d5285cd3f1fb61f4 /kern/mutex.c | |
parent | 99cef9617922016bda314a6e21b499e17e1af56e (diff) |
Update calls to atomic operations
Make spin locks and mutexes encode their state on an int rather than
a long.
Diffstat (limited to 'kern/mutex.c')
-rw-r--r-- | kern/mutex.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kern/mutex.c b/kern/mutex.c index e49c56c8..58e24513 100644 --- a/kern/mutex.c +++ b/kern/mutex.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013 Richard Braun. + * Copyright (c) 2013-2014 Richard Braun. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -24,7 +24,7 @@ void mutex_lock_slow(struct mutex *mutex) { struct mutex_waiter waiter; - unsigned long state; + unsigned int state; spinlock_lock(&mutex->lock); |