Files
xv6-labs/kernel/spinlock.h
2025-07-01 20:31:29 +08:00

10 lines
201 B
C

// Mutual exclusion lock.
struct spinlock {
uint64 locked; // Is the lock held?
// For debugging:
char *name; // Name of lock.
struct cpu *cpu; // The cpu holding the lock.
};