interrupts.hh (8745:575cab0db076) interrupts.hh (11566:b11410957c9e)
1/*
2 * Copyright (c) 2011 Google
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 checkInterrupts(ThreadContext *tc) const
85 {
86 panic("Interrupts::checkInterrupts not implemented.\n");
87 }
88
89 Fault
90 getInterrupt(ThreadContext *tc)
91 {
1/*
2 * Copyright (c) 2011 Google
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 checkInterrupts(ThreadContext *tc) const
85 {
86 panic("Interrupts::checkInterrupts not implemented.\n");
87 }
88
89 Fault
90 getInterrupt(ThreadContext *tc)
91 {
92 assert(checkInterrupts(tc));
92 panic("Interrupts::getInterrupt not implemented.\n");
93 }
94
95 void
96 updateIntrInfo(ThreadContext *tc)
97 {
98 panic("Interrupts::updateIntrInfo not implemented.\n");
99 }
100};
101
102} // namespace PowerISA
103
104#endif // __ARCH_POWER_INTERRUPT_HH__
105
93 panic("Interrupts::getInterrupt not implemented.\n");
94 }
95
96 void
97 updateIntrInfo(ThreadContext *tc)
98 {
99 panic("Interrupts::updateIntrInfo not implemented.\n");
100 }
101};
102
103} // namespace PowerISA
104
105#endif // __ARCH_POWER_INTERRUPT_HH__
106