summaryrefslogtreecommitdiff
path: root/kernel/spinlock.h
blob: 5f244c97bc8896324a27b65bedf5ebd6ae2f18b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Mutual exclusion lock.
struct spinlock {
  uint locked;       // Is the lock held?

  // For debugging:
  char *name;        // Name of lock.
  struct cpu *cpu;   // The cpu holding the lock.
  struct cpu *last_release;
  uint64 last_pc;
};