xv6-labs-2024-solution/spinlock.h

5 lines
54 B
C

struct spinlock {
uint locked;
uint locker_pc;
};