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