xv6-cs450/spinlock.h
2006-07-17 05:00:25 +00:00

6 lines
62 B
C

struct spinlock {
uint locked;
uint32_t pc;
int cpu;
};