xv6-cs450/spinlock.h

12 lines
311 B
C
Raw Normal View History

2006-09-07 16:12:30 +02:00
// Mutual exclusion lock.
struct spinlock {
2006-09-07 16:12:30 +02:00
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.
};