Skip to content

spinlock.h

TIP

Mutual exclusion lock.

struct spinlock {
  uint locked;

TIP

For debugging:

  char *name;
  struct cpu *cpu;
};