summaryrefslogtreecommitdiff
path: root/kern/tru64
diff options
context:
space:
mode:
authorAli Saidi <saidi@eecs.umich.edu>2004-09-24 14:16:51 -0400
committerAli Saidi <saidi@eecs.umich.edu>2004-09-24 14:16:51 -0400
commita7c089ab06c863c794f2096a2c321b7e31ead5b6 (patch)
treea4e769b5ee9df89c2cfac47b9af56f4fa3e29d10 /kern/tru64
parentac422ac949ac792da48bdd1417dc53d9850943ff (diff)
downloadgem5-a7c089ab06c863c794f2096a2c321b7e31ead5b6.tar.xz
only set stuff up for binning interrupts if interrupt binning is on
kern/linux/linux_system.cc: Don't scheduling interrupt events if we are not binning interrupts kern/tru64/tru64_system.cc: set the bin_int boolean in the system structure --HG-- extra : convert_revision : 68eea9c448f1c481fc79be1777acb536d6385495
Diffstat (limited to 'kern/tru64')
-rw-r--r--kern/tru64/tru64_system.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/kern/tru64/tru64_system.cc b/kern/tru64/tru64_system.cc
index 5493139ee..0380c9478 100644
--- a/kern/tru64/tru64_system.cc
+++ b/kern/tru64/tru64_system.cc
@@ -168,6 +168,7 @@ CREATE_SIM_OBJECT(Tru64System)
p->system_rev = system_rev;
p->bin = bin;
p->binned_fns = binned_fns;
+ p->bin_int = false;
return new Tru64System(p);
}