xv6/spinlock.h

5 lines
54 B
C
Raw Normal View History

struct spinlock {
uint locked;
uint locker_pc;
};