timing.hh (4471:4d86c4d096ad) timing.hh (4475:fb185cc1c845)
1/*
2 * Copyright (c) 2002-2005 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;

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

86
87 virtual Tick recvAtomic(PacketPtr pkt);
88
89 virtual void recvFunctional(PacketPtr pkt);
90
91 virtual void recvStatusChange(Status status);
92
93 virtual void getDeviceAddressRanges(AddrRangeList &resp,
1/*
2 * Copyright (c) 2002-2005 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;

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

86
87 virtual Tick recvAtomic(PacketPtr pkt);
88
89 virtual void recvFunctional(PacketPtr pkt);
90
91 virtual void recvStatusChange(Status status);
92
93 virtual void getDeviceAddressRanges(AddrRangeList &resp,
94 AddrRangeList &snoop)
95 { resp.clear(); snoop.clear(); snoop.push_back(RangeSize(0,0)); }
94 bool &snoop)
95 { resp.clear(); snoop = false; }
96
97 struct TickEvent : public Event
98 {
99 PacketPtr pkt;
100 TimingSimpleCPU *cpu;
101
102 TickEvent(TimingSimpleCPU *_cpu)
103 :Event(&mainEventQueue), cpu(_cpu) {}

--- 106 unchanged lines hidden ---
96
97 struct TickEvent : public Event
98 {
99 PacketPtr pkt;
100 TimingSimpleCPU *cpu;
101
102 TickEvent(TimingSimpleCPU *_cpu)
103 :Event(&mainEventQueue), cpu(_cpu) {}

--- 106 unchanged lines hidden ---