summaryrefslogtreecommitdiff
path: root/src/arch/x86/locked_mem.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/x86/locked_mem.hh')
-rw-r--r--src/arch/x86/locked_mem.hh31
1 files changed, 1 insertions, 30 deletions
diff --git a/src/arch/x86/locked_mem.hh b/src/arch/x86/locked_mem.hh
index 51cfb2ea3..0a746eb4e 100644
--- a/src/arch/x86/locked_mem.hh
+++ b/src/arch/x86/locked_mem.hh
@@ -37,35 +37,6 @@
* ISA-specific helper functions for locked memory accesses.
*/
-#include "mem/packet.hh"
-#include "mem/request.hh"
-
-namespace X86ISA
-{
- 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 bool
- handleLockedWrite(XC *xc, Request *req, Addr cacheBlockMask)
- {
- return true;
- }
-
- template <class XC>
- inline void
- handleLockedSnoopHit(XC *xc)
- {
- }
-}
+#include "arch/generic/locked_mem.hh"
#endif // __ARCH_X86_LOCKEDMEM_HH__