xv6-riscv-rust/spinlock.h

7 lines
77 B
C

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