Skip to content
Snippets Groups Projects
spinlock.h 77 B
struct spinlock {
  char *name;
  uint locked;
  int cpu;
  uint pcs[10];
};