index
:
xv6-riscv
riscv
MIT xv6-RISCV kernel modified to RV64I base integer extension
Aditya N. Naik
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
spinlock.h
blob: ee0a26c91c5b4848f1fc3b0950eb22213afc247d (
plain
)
1
2
3
4
5
6
struct
spinlock
{
unsigned
int
locked
;
struct
proc
*
p
;
int
count
;
unsigned
locker_pc
;
};