xref: /xv6-public/spinlock.h (revision 2b19190c)
1 struct spinlock {
2   char *name;
3   uint locked;
4   int cpu;
5   uint pcs[10];
6 };
7