git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@1058 8c4709b5-6ec9-48aa-a5cd-a96041d1645a
This commit is contained in:
hellwig
2012-04-12 09:56:41 +00:00
parent ec9a1c33d1
commit 9a31ce2b04

View File

@ -15,9 +15,9 @@ aspect Interrupt_FI
advice execution (interrupt_method()) : around () advice execution (interrupt_method()) : around ()
{ {
unsigned type = *(tjp->arg<1>()); unsigned vector = *(tjp->arg<0>());
if(!sal::simulator.isSuppressedInterrupt(type)){ if(!sal::simulator.isSuppressedInterrupt(vector)){
tjp->proceed(); tjp->proceed();
} }
} }