xv6-riscv-rust/spinlock.h

7 lines
77 B
C

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