xref: /xv6-public/spinlock.h (revision 0dd42537)
1 struct spinlock {
2   uint locked;
3   uint32_t pc;
4   int cpu;
5 };
6