diff options
Diffstat (limited to 'spinlock.h')
-rw-r--r-- | spinlock.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5,7 +5,7 @@ struct spinlock { // For debugging: char *name; // Name of lock. struct cpu *cpu; // The cpu holding the lock. - uint pcs[10]; // The call stack (an array of program counters) + uint64 pcs[10]; // The call stack (an array of program counters) // that locked the lock. }; |