interrupts.hh (5133:a88763dd4a84) interrupts.hh (5134:1cdc6876bc9e)
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * Redistribution and use of this software in source and binary forms,
6 * with or without modification, are permitted provided that the
7 * following conditions are met:
8 *

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

80
81 void post(int int_num, int index)
82 {
83 panic("Interrupts::post unimplemented!\n");
84 }
85
86 void clear(int int_num, int index)
87 {
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * Redistribution and use of this software in source and binary forms,
6 * with or without modification, are permitted provided that the
7 * following conditions are met:
8 *

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

80
81 void post(int int_num, int index)
82 {
83 panic("Interrupts::post unimplemented!\n");
84 }
85
86 void clear(int int_num, int index)
87 {
88 panic("Interrupts::clear unimplemented!\n");
88 warn("Interrupts::clear unimplemented!\n");
89 }
90
91 void clear_all()
92 {
93 warn("Interrupts::clear_all unimplemented!\n");
94 }
95
96 bool check_interrupts(ThreadContext * tc) const
97 {
89 }
90
91 void clear_all()
92 {
93 warn("Interrupts::clear_all unimplemented!\n");
94 }
95
96 bool check_interrupts(ThreadContext * tc) const
97 {
98 panic("Interrupts::check_interrupts unimplemented!\n");
99 return false;
100 }
101
102 Fault getInterrupt(ThreadContext * tc)
103 {
98 return false;
99 }
100
101 Fault getInterrupt(ThreadContext * tc)
102 {
104 panic("Interrupts::getInterrupt unimplemented!\n");
105 return NoFault;
106 }
107
108 void updateIntrInfo(ThreadContext * tc)
109 {
110 panic("Interrupts::updateIntrInfo unimplemented!\n");
111 }
112

--- 20 unchanged lines hidden ---
103 return NoFault;
104 }
105
106 void updateIntrInfo(ThreadContext * tc)
107 {
108 panic("Interrupts::updateIntrInfo unimplemented!\n");
109 }
110

--- 20 unchanged lines hidden ---