xv6-cs450/spinlock.h
2006-07-20 09:07:53 +00:00

6 lines
58 B
C

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