Deleted Added
sdiff udiff text old ( 4918:3214e3694fb2 ) new ( 4965:ad0e792a5c78 )
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;

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

65 BridgePort *otherPort;
66
67 /** Minimum delay though this bridge. */
68 Tick delay;
69
70 /** Min delay to respond to a nack. */
71 Tick nackDelay;
72
73 bool fixPartialWrite;
74
75 class PacketBuffer : public Packet::SenderState {
76
77 public:
78 Tick ready;
79 PacketPtr pkt;
80 Packet::SenderState *origSenderState;
81 short origSrc;

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

151 };
152
153 SendEvent sendEvent;
154
155 public:
156 /** Constructor for the BusPort.*/
157 BridgePort(const std::string &_name, Bridge *_bridge,
158 BridgePort *_otherPort, int _delay, int _nack_delay,
159 int _req_limit, int _resp_limit, bool fix_partial_write);
160
161 protected:
162
163 /** When receiving a timing request from the peer port,
164 pass it to the bridge. */
165 virtual bool recvTiming(PacketPtr pkt);
166
167 /** When receiving a retry request from the peer port,

--- 44 unchanged lines hidden ---