summaryrefslogtreecommitdiff
path: root/spinlock.h
blob: ae5ad1f5b550b327c580835e3330300bc96b5a66 (plain)
1
2
3
4
5
6
struct spinlock {
  char *name;
  uint locked;
  int cpu;
  uint pcs[10];
};