first commit
This commit is contained in:
9
kernel/spinlock.h
Normal file
9
kernel/spinlock.h
Normal file
@@ -0,0 +1,9 @@
|
||||
// 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.
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user