diff options
Diffstat (limited to 'src/arch/power')
-rw-r--r-- | src/arch/power/locked_mem.hh | 33 |
1 files changed, 1 insertions, 32 deletions
diff --git a/src/arch/power/locked_mem.hh b/src/arch/power/locked_mem.hh index d962f9aff..d7abc64f0 100644 --- a/src/arch/power/locked_mem.hh +++ b/src/arch/power/locked_mem.hh @@ -41,37 +41,6 @@ * ISA-specific helper functions for locked memory accesses. */ -#include "mem/packet.hh" -#include "mem/request.hh" - -namespace PowerISA -{ - -template <class XC> -inline void -handleLockedSnoop(XC *xc, PacketPtr pkt, Addr cacheBlockMask) -{ -} - -template <class XC> -inline void -handleLockedRead(XC *xc, Request *req) -{ -} - -template <class XC> -inline void -handleLockedSnoopHit(XC *xc) -{ -} - -template <class XC> -inline bool -handleLockedWrite(XC *xc, Request *req, Addr cacheBlockMask) -{ - return true; -} - -} // namespace PowerISA +#include "arch/generic/locked_mem.hh" #endif // __ARCH_POWER_LOCKED_MEM_HH__ |