xv6-riscv-rust/spinlock.h

7 lines
72 B
C

struct spinlock {
char *name;
uint locked;
uint pc;
int cpu;
};