summaryrefslogtreecommitdiff
path: root/spinlock.h
diff options
context:
space:
mode:
authorrsc <rsc>2006-07-17 01:52:13 +0000
committerrsc <rsc>2006-07-17 01:52:13 +0000
commitb5ee516575b4d2f1fd7de014230fee7cf8b6b538 (patch)
tree158b9cf0466e66ac80c96d948a12ae67afcb1d9a /spinlock.h
parent857d60cb0c56df19a5125584c677aa56c4488e98 (diff)
downloadxv6-labs-b5ee516575b4d2f1fd7de014230fee7cf8b6b538.tar.gz
xv6-labs-b5ee516575b4d2f1fd7de014230fee7cf8b6b538.tar.bz2
xv6-labs-b5ee516575b4d2f1fd7de014230fee7cf8b6b538.zip
add uint and standardize on typedefs instead of unsigned
Diffstat (limited to 'spinlock.h')
-rw-r--r--spinlock.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/spinlock.h b/spinlock.h
index bc84a58..044e4d8 100644
--- a/spinlock.h
+++ b/spinlock.h
@@ -1,4 +1,4 @@
struct spinlock {
- unsigned int locked;
- unsigned locker_pc;
+ uint locked;
+ uint locker_pc;
};