Deleted Added
sdiff udiff text old ( 5134:1cdc6876bc9e ) new ( 5646:0a488a147fb8 )
full compact
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 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__