7 lines
91 B
C
7 lines
91 B
C
struct spinlock {
|
|
uint magic;
|
|
char *name;
|
|
uint locked;
|
|
int cpu;
|
|
uint pcs[10];
|
|
};
|