summaryrefslogtreecommitdiff
path: root/src/arch/riscv/locked_mem.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/riscv/locked_mem.hh')
-rw-r--r--src/arch/riscv/locked_mem.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/riscv/locked_mem.hh b/src/arch/riscv/locked_mem.hh
index 4a809206c..d7fc0ca5a 100644
--- a/src/arch/riscv/locked_mem.hh
+++ b/src/arch/riscv/locked_mem.hh
@@ -67,7 +67,7 @@ const int WARN_FAILURE = 10000;
// RISC-V allows multiple locks per hart, but each SC has to unlock the most
// recent one, so we use a stack here.
-static std::stack<Addr> locked_addrs;
+extern std::stack<Addr> locked_addrs;
template <class XC> inline void
handleLockedSnoop(XC *xc, PacketPtr pkt, Addr cacheBlockMask)