added base src
[xv6-db.git] / spinlock.h
blobfdda016b3bf2fe7601ae132a3bab47df35f8cc54
1 // Mutual exclusion lock.
2 struct spinlock {
3 uint locked; // Is the lock held?
5 // For debugging:
6 char *name; // Name of lock.
7 struct cpu *cpu; // The cpu holding the lock.
8 uint pcs[10]; // The call stack (an array of program counters)
9 // that locked the lock.