diff options
Diffstat (limited to 'spinlock.h')
-rw-r--r-- | spinlock.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/spinlock.h b/spinlock.h deleted file mode 100644 index 4392820..0000000 --- a/spinlock.h +++ /dev/null @@ -1,9 +0,0 @@ -// 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. -}; - |