86a87,95
> /**
> * Schedule the sending of a timing response.
> *
> * @param pkt Packet to send
> * @param when Absolute time (in ticks) to send packet
> */
> void schedTimingResp(PacketPtr pkt, Tick when)
> { queue.schedSendTiming(pkt, when); }
>
127a137,154
> /**
> * Schedule the sending of a timing request.
> *
> * @param pkt Packet to send
> * @param when Absolute time (in ticks) to send packet
> */
> void schedTimingReq(PacketPtr pkt, Tick when)
> { queue.schedSendTiming(pkt, when); }
>
> /**
> * Schedule the sending of a timing snoop response.
> *
> * @param pkt Packet to send
> * @param when Absolute time (in ticks) to send packet
> */
> void schedTimingSnoopResp(PacketPtr pkt, Tick when)
> { queue.schedSendTiming(pkt, when, true); }
>