xv6-65oo2/kernel/spinlock.h
2019-07-02 13:40:33 -04:00

12 lines
245 B
C

// 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.
struct cpu *last_release;
uint64 last_pc;
};