repo.or.cz
/
xv6-db.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
added base src
[xv6-db.git]
/
spinlock.h
blob
fdda016b3bf2fe7601ae132a3bab47df35f8cc54
1
// Mutual exclusion lock.
2
struct
spinlock
{
3
uint locked
;
// Is the lock held?
4
5
// For debugging:
6
char
*
name
;
// Name of lock.
7
struct
cpu
*
cpu
;
// The cpu holding the lock.
8
uint pcs
[
10
];
// The call stack (an array of program counters)
9
// that locked the lock.
10
};
11