Deleted Added
sdiff udiff text old ( 10713:eddb533708cb ) new ( 10820:e2a283400c43 )
full compact
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

65 WalkerPort(const std::string &_name, Walker * _walker) :
66 MasterPort(_name, _walker), walker(_walker)
67 {}
68
69 protected:
70 Walker *walker;
71
72 bool recvTimingResp(PacketPtr pkt);
73 void recvReqRetry();
74 };
75
76 friend class WalkerPort;
77 WalkerPort port;
78
79 // State to track each walk of the page table
80 class WalkerState
81 {

--- 132 unchanged lines hidden ---