73,74c73
< namespace X86ISA
< {
---
> namespace X86ISA {
192c191,192
< void setClock(Tick newClock)
---
> void
> setClock(Tick newClock)
246c246,247
< void setRegNoEffect(ApicRegIndex reg, uint32_t val)
---
> void
> setRegNoEffect(ApicRegIndex reg, uint32_t val)
255,262c256,263
< Interrupts(Params * p) : BasicPioDevice(p), IntDev(this),
< latency(p->pio_latency), clock(0),
< apicTimerEvent(this),
< pendingSmi(false), smiVector(0),
< pendingNmi(false), nmiVector(0),
< pendingExtInt(false), extIntVector(0),
< pendingInit(false), initVector(0),
< pendingUnmaskableInt(false)
---
> Interrupts(Params * p)
> : BasicPioDevice(p), IntDev(this), latency(p->pio_latency), clock(0),
> apicTimerEvent(this),
> pendingSmi(false), smiVector(0),
> pendingNmi(false), nmiVector(0),
> pendingExtInt(false), extIntVector(0),
> pendingInit(false), initVector(0),
> pendingUnmaskableInt(false)
276,278c277,279
< bool check_interrupts(ThreadContext * tc) const;
< Fault getInterrupt(ThreadContext * tc);
< void updateIntrInfo(ThreadContext * tc);
---
> bool checkInterrupts(ThreadContext *tc) const;
> Fault getInterrupt(ThreadContext *tc);
> void updateIntrInfo(ThreadContext *tc);
284c285,286
< void serialize(std::ostream & os)
---
> void
> serialize(std::ostream &os)
289c291,292
< void unserialize(Checkpoint * cp, const std::string & section)
---
> void
> unserialize(Checkpoint *cp, const std::string &section)
298c301,302
< void post(int int_num, int index)
---
> void
> post(int int_num, int index)
303c307,308
< void clear(int int_num, int index)
---
> void
> clear(int int_num, int index)
308c313,314
< void clear_all()
---
> void
> clearAll()
310c316
< panic("Interrupts::clear_all unimplemented!\n");
---
> panic("Interrupts::clearAll unimplemented!\n");
314c320
< };
---
> } // namespace X86ISA