blob: 1a706cfdb31542292a0e1f0936c143c8e502e7b9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// Mutual exclusion lock.
struct spinlock {
uint locked; // Is the lock held?
// For debugging:
char *name; // Name of lock.
int cpu; // The number of the cpu holding the lock.
uint pcs[10]; // The call stack (an array of program counters)
// that locked the lock.
};
|