xref: /xv6-public/spinlock.h (revision 46bbd72f)
1 struct spinlock {
2   unsigned int locked;
3   unsigned locker_pc;
4 };
5