xv6-cs450/spinlock.h

5 lines
54 B
C

struct spinlock {
uint locked;
uint locker_pc;
};