xv6-riscv-rust/spinlock.h

5 lines
66 B
C

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