summaryrefslogtreecommitdiff
path: root/spinlock.h
blob: 0572124bfb0592922bd0c1d6cda01d41998628a8 (plain)
1
2
3
4
5
struct spinlock {
  uint locked;
  uint pc;
  int cpu;
};