diff options
author | Ali Saidi <saidi@eecs.umich.edu> | 2004-09-24 14:16:51 -0400 |
---|---|---|
committer | Ali Saidi <saidi@eecs.umich.edu> | 2004-09-24 14:16:51 -0400 |
commit | a7c089ab06c863c794f2096a2c321b7e31ead5b6 (patch) | |
tree | a4e769b5ee9df89c2cfac47b9af56f4fa3e29d10 /kern/tru64/tru64_system.cc | |
parent | ac422ac949ac792da48bdd1417dc53d9850943ff (diff) | |
download | gem5-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/tru64_system.cc')
-rw-r--r-- | kern/tru64/tru64_system.cc | 1 |
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); } |