diff options
Diffstat (limited to 'spinlock.h')
-rw-r--r-- | spinlock.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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. |