xv6-cs450/spinlock.h
2006-07-29 09:35:02 +00:00

7 lines
72 B
C

struct spinlock {
char *name;
uint locked;
uint pc;
int cpu;
};