Deleted Added
sdiff udiff text old ( 6064:46d327d42036 ) new ( 6138:6cbdd76b93db )
full compact
1/*
2 * Copyright (c) 2008 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 17 unchanged lines hidden (view full) ---

26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Gabe Black
29 */
30
31#include "dev/x86/intdev.hh"
32
33void
34X86ISA::IntDev::IntPort::sendMessage(ApicList apics,
35 TriggerIntMessage message, bool timing)
36{
37 ApicList::iterator apicIt;
38 for (apicIt = apics.begin(); apicIt != apics.end(); apicIt++) {
39 PacketPtr pkt = buildIntRequest(*apicIt, message);
40 if (timing)
41 sendMessageTiming(pkt, latency);
42 else
43 sendMessageAtomic(pkt);
44 }
45}
46
47X86ISA::IntSourcePin *
48X86IntSourcePinParams::create()
49{
50 return new X86ISA::IntSourcePin(this);
51}

--- 12 unchanged lines hidden ---