xref: /xv6-public/spinlock.h (revision b5ee5165)
1 struct spinlock {
2   uint locked;
3   uint locker_pc;
4 };
5