interrupts.hh (7629:0f0c231e3e97) interrupts.hh (7902:aafb4a7384d4)
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

252 bool checkInterrupts(ThreadContext *tc) const;
253 Fault getInterrupt(ThreadContext *tc);
254 void updateIntrInfo(ThreadContext *tc);
255
256 /*
257 * Serialization.
258 */
259
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

252 bool checkInterrupts(ThreadContext *tc) const;
253 Fault getInterrupt(ThreadContext *tc);
254 void updateIntrInfo(ThreadContext *tc);
255
256 /*
257 * Serialization.
258 */
259
260 void
261 serialize(std::ostream &os)
262 {
263 warn("Interrupts::serialize unimplemented!\n");
264 }
260 virtual void serialize(std::ostream &os);
261 virtual void unserialize(Checkpoint *cp, const std::string &section);
265
262
266 void
267 unserialize(Checkpoint *cp, const std::string &section)
268 {
269 warn("Interrupts::unserialize unimplemented!\n");
270 }
271
272 /*
273 * Old functions needed for compatability but which will be phased out
274 * eventually.
275 */
276 void
277 post(int int_num, int index)
278 {
279 panic("Interrupts::post unimplemented!\n");

--- 18 unchanged lines hidden ---
263 /*
264 * Old functions needed for compatability but which will be phased out
265 * eventually.
266 */
267 void
268 post(int int_num, int index)
269 {
270 panic("Interrupts::post unimplemented!\n");

--- 18 unchanged lines hidden ---