summaryrefslogtreecommitdiff
path: root/spinlock.h
diff options
context:
space:
mode:
authorFrans Kaashoek <[email protected]>2016-08-25 09:13:00 -0400
committerFrans Kaashoek <[email protected]>2016-08-25 09:13:00 -0400
commit7894fcd21732dd2ddfbb9beca52d037a62ed11f4 (patch)
treeeabcfc4f08613dcf7c35e58d9425f02c4c65224f /spinlock.h
parent6de6a3c952dc8786619bd052e26e6bc1c97be2e6 (diff)
downloadxv6-labs-7894fcd21732dd2ddfbb9beca52d037a62ed11f4.tar.gz
xv6-labs-7894fcd21732dd2ddfbb9beca52d037a62ed11f4.tar.bz2
xv6-labs-7894fcd21732dd2ddfbb9beca52d037a62ed11f4.zip
Remove trailing white space with:
for f in *.{h,c}; do sed -i .sed 's/[[:blank:]]*$//' $f; done (Thanks to Nicolás Wolovick)
Diffstat (limited to 'spinlock.h')
-rw-r--r--spinlock.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/spinlock.h b/spinlock.h
index fdda016..0a9d8e2 100644
--- a/spinlock.h
+++ b/spinlock.h
@@ -1,7 +1,7 @@
// Mutual exclusion lock.
struct spinlock {
uint locked; // Is the lock held?
-
+
// For debugging:
char *name; // Name of lock.
struct cpu *cpu; // The cpu holding the lock.