xv6-cs450/spinlock.h
rtm 2b19190c13 clean up stale error checks and panics
delete unused functions
a few comments
2006-08-29 14:45:45 +00:00

7 lines
77 B
C

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