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