Deleted Added
sdiff udiff text old ( 4695:a63378aed062 ) new ( 5004:7d94cedab264 )
full compact
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
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;

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

87 static FaultVect _vect;
88 static FaultStat _count;
89 public:
90 FaultName name() const {return _name;}
91 FaultVect vect() {return _vect;}
92 FaultStat & countStat() {return _count;}
93};
94
95static inline Fault genMachineCheckFault()
96{
97 return new MachineCheckFault;
98}
99
100class ResetFault : public MipsFault
101{
102 private:
103 static FaultName _name;
104 static FaultVect _vect;
105 static FaultStat _count;
106 public:
107 FaultName name() const {return _name;}

--- 200 unchanged lines hidden ---