13 lines
232 B
C
13 lines
232 B
C
#include "types.h"
|
|
#pragma once
|
|
|
|
// 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.
|
|
};
|
|
|