xv6-cs450/spinlock.h

7 lines
72 B
C
Raw Normal View History

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