xv6-cs450/spinlock.h

5 lines
66 B
C
Raw Normal View History

struct spinlock {
unsigned int locked;
unsigned locker_pc;
};