interrupts.hh (5134:1cdc6876bc9e) interrupts.hh (5646:0a488a147fb8)
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 *

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

103 return NoFault;
104 }
105
106 void updateIntrInfo(ThreadContext * tc)
107 {
108 panic("Interrupts::updateIntrInfo unimplemented!\n");
109 }
110
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 *

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

103 return NoFault;
104 }
105
106 void updateIntrInfo(ThreadContext * tc)
107 {
108 panic("Interrupts::updateIntrInfo unimplemented!\n");
109 }
110
111 uint64_t get_vec(int int_num)
112 {
113 panic("Interrupts::get_vec unimplemented!\n");
114 return 0;
115 }
116
117 void serialize(std::ostream & os)
118 {
119 panic("Interrupts::serialize unimplemented!\n");
120 }
121
122 void unserialize(Checkpoint * cp, const std::string & section)
123 {
124 panic("Interrupts::unserialize unimplemented!\n");
125 }
126};
127
128};
129
130#endif // __ARCH_X86_INTERRUPTS_HH__
111 void serialize(std::ostream & os)
112 {
113 panic("Interrupts::serialize unimplemented!\n");
114 }
115
116 void unserialize(Checkpoint * cp, const std::string & section)
117 {
118 panic("Interrupts::unserialize unimplemented!\n");
119 }
120};
121
122};
123
124#endif // __ARCH_X86_INTERRUPTS_HH__