xv6-65oo2/spinlock.h

6 lines
62 B
C
Raw Normal View History

struct spinlock {
uint locked;
2006-07-17 05:00:25 +00:00
uint32_t pc;
int cpu;
};