108,109c108,110
< /** This function pops the last element off the transmit list and sends it.*/
< virtual Packet *recvRetry();
---
> /** This function is notification that the device should attempt to send a
> * packet again. */
> virtual void recvRetry();
149c150
< virtual Packet *recvRetry() ;
---
> virtual void recvRetry() ;
154,170d154
< class SendEvent : public Event
< {
< DmaPort *port;
< Packet *packet;
<
< SendEvent(PioPort *p, Packet *pkt, Tick t)
< : Event(&mainEventQueue), packet(pkt)
< { schedule(curTick + t); }
<
< virtual void process();
<
< virtual const char *description()
< { return "Future scheduled sendTiming event"; }
<
< friend class DmaPort;
< };
<
181,182d164
< friend class DmaPort::SendEvent;
<