xv6-riscv-kernel/spinlock.h

5 lines
66 B
C
Raw Normal View History

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