Deleted Added
sdiff udiff text old ( 8922:17f037ad8918 ) new ( 8948:e95ee70f876c )
full compact
1/*
2 * Copyright (c) 2002-2005 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;

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

94 CpuPort(const std::string &_name, MemTest *_memtest)
95 : MasterPort(_name, _memtest), memtest(_memtest)
96 { }
97
98 protected:
99
100 virtual bool recvTiming(PacketPtr pkt);
101
102 virtual Tick recvAtomic(PacketPtr pkt);
103
104 virtual void recvFunctional(PacketPtr pkt);
105
106 virtual void recvRetry();
107 };
108
109 CpuPort cachePort;
110 CpuPort funcPort;
111 PortProxy funcProxy;
112
113 class MemTestSenderState : public Packet::SenderState, public FastAlloc

--- 83 unchanged lines hidden ---