diff options
Diffstat (limited to 'src/dev/x86')
-rw-r--r-- | src/dev/x86/intdev.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dev/x86/intdev.cc b/src/dev/x86/intdev.cc index 8580ae943..3f8e49ce1 100644 --- a/src/dev/x86/intdev.cc +++ b/src/dev/x86/intdev.cc @@ -51,7 +51,7 @@ X86ISA::IntDev::IntMasterPort::sendMessage(ApicList apics, for (apicIt = apics.begin(); apicIt != apics.end(); apicIt++) { PacketPtr pkt = buildIntRequest(*apicIt, message); if (timing) { - queue.schedSendTiming(pkt, curTick() + latency); + schedTimingReq(pkt, curTick() + latency); // The target handles cleaning up the packet in timing mode. } else { // ignore the latency involved in the atomic transaction |