Deleted Added
sdiff udiff text old ( 3170:37fd1e73f836 ) new ( 4661:44458219add1 )
full compact
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 23 unchanged lines hidden (view full) ---

32#define __ARCH_MIPS_LOCKED_MEM_HH__
33
34/**
35 * @file
36 *
37 * ISA-specific helper functions for locked memory accesses.
38 */
39
40#include "mem/request.hh"
41
42
43namespace MipsISA
44{
45template <class XC>
46inline void
47handleLockedRead(XC *xc, Request *req)
48{
49}
50
51
52template <class XC>
53inline bool
54handleLockedWrite(XC *xc, Request *req)
55{
56 return true;
57}
58
59
60} // namespace MipsISA
61
62#endif