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