46,66d45
< X86ISA::IntDevice::IntMasterPort::sendMessage(ApicList apics,
< TriggerIntMessage message,
< bool timing)
< {
< ApicList::iterator apicIt;
< for (apicIt = apics.begin(); apicIt != apics.end(); apicIt++) {
< PacketPtr pkt = buildIntRequest(*apicIt, message);
< if (timing) {
< schedTimingReq(pkt, curTick() + latency);
< // The target handles cleaning up the packet in timing mode.
< } else {
< // ignore the latency involved in the atomic transaction
< sendAtomic(pkt);
< assert(pkt->isResponse());
< // also ignore the latency in handling the response
< recvResponse(pkt);
< }
< }
< }
<
< void