xv6-cs450/spinlock.h

6 lines
62 B
C
Raw Normal View History

struct spinlock {
uint locked;
2006-07-17 07:00:25 +02:00
uint32_t pc;
int cpu;
};