199c199,202
< return ruby_port->pio_port.sendNextCycle(pkt);
---
> // send next cycle
> ruby_port->pio_port.schedTimingReq(pkt, curTick() +
> g_eventQueue_ptr->getClock());
> return true;
650c653,654
< sendNextCycle(pkt);
---
> // send next cycle
> schedTimingResp(pkt, curTick() + g_eventQueue_ptr->getClock());
657,673d660
< bool
< RubyPort::M5Port::sendNextCycle(PacketPtr pkt, bool send_as_snoop)
< {
< //minimum latency, must be > 0
< queue.schedSendTiming(pkt, curTick() + (1 * g_eventQueue_ptr->getClock()),
< send_as_snoop);
< return true;
< }
<
< bool
< RubyPort::PioPort::sendNextCycle(PacketPtr pkt)
< {
< //minimum latency, must be > 0
< queue.schedSendTiming(pkt, curTick() + (1 * g_eventQueue_ptr->getClock()));
< return true;
< }
<