Initial Upload
This commit is contained in:
11
spinlock.h
Normal file
11
spinlock.h
Normal file
@ -0,0 +1,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.
|
||||
uint pcs[10]; // The call stack (an array of program counters)
|
||||
// that locked the lock.
|
||||
};
|
||||
|
Reference in New Issue
Block a user