xv6-65oo2/spinlock.h

7 lines
72 B
C
Raw Normal View History

struct spinlock {
2006-07-29 09:35:02 +00:00
char *name;
uint locked;
2006-07-20 09:07:53 +00:00
uint pc;
2006-07-17 05:00:25 +00:00
int cpu;
};