xv6-riscv-rust/spinlock.h

8 lines
91 B
C

struct spinlock {
uint magic;
char *name;
uint locked;
int cpu;
uint pcs[10];
};