The normal spill and fill faults only need to behave specially in SE.
--HG-- extra : convert_revision : 4d4b866699e3450b88418822fc198411ee3d831a
This commit is contained in:
parent
bcd5099aac
commit
0c9bcf209a
1 changed files with 6 additions and 0 deletions
|
@ -548,7 +548,10 @@ class SpillNNormal : public EnumeratedFault
|
|||
FaultName name() {return _name;}
|
||||
FaultPriority priority() {return _priority;}
|
||||
FaultStat & countStat() {return _count;}
|
||||
//These need to be handled specially to enable spill traps in SE
|
||||
#if !FULL_SYSTEM
|
||||
void invoke(ThreadContext * tc);
|
||||
#endif
|
||||
};
|
||||
|
||||
class SpillNOther : public EnumeratedFault
|
||||
|
@ -579,7 +582,10 @@ class FillNNormal : public EnumeratedFault
|
|||
FaultName name() {return _name;}
|
||||
FaultPriority priority() {return _priority;}
|
||||
FaultStat & countStat() {return _count;}
|
||||
//These need to be handled specially to enable fill traps in SE
|
||||
#if !FULL_SYSTEM
|
||||
void invoke(ThreadContext * tc);
|
||||
#endif
|
||||
};
|
||||
|
||||
class FillNOther : public EnumeratedFault
|
||||
|
|
Loading…
Reference in a new issue