Deleted Added
sdiff udiff text old ( 3520:4f4a2054fd85 ) new ( 3521:0b0b3551def0 )
full compact
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;

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

84 TheISA::Interrupts interrupts;
85
86 public:
87 virtual void post_interrupt(int int_num, int index);
88 virtual void clear_interrupt(int int_num, int index);
89 virtual void clear_interrupts();
90 bool checkInterrupts;
91
92 bool check_interrupts(ThreadContext * tc) const
93 { return interrupts.check_interrupts(tc); }
94
95 class ProfileEvent : public Event
96 {
97 private:
98 BaseCPU *cpu;
99 int interval;
100
101 public:
102 ProfileEvent(BaseCPU *cpu, int interval);

--- 154 unchanged lines hidden ---