diff options
author | Korey Sewell <ksewell@umich.edu> | 2011-06-19 21:43:36 -0400 |
---|---|---|
committer | Korey Sewell <ksewell@umich.edu> | 2011-06-19 21:43:36 -0400 |
commit | 555bd4d8423bcc4edd77acd3226bcd2af0cbcdac (patch) | |
tree | 4d96ff655c02661ce49c40b76f2f65c9255c6db3 /src/cpu/inorder/resource_pool.cc | |
parent | 7dea79535c87b68b5fc6143190d09b8fc364f2aa (diff) | |
download | gem5-555bd4d8423bcc4edd77acd3226bcd2af0cbcdac.tar.xz |
inorder: update event priorities
dont use offset to calculate this but rather an enum
that can be updated
Diffstat (limited to 'src/cpu/inorder/resource_pool.cc')
-rw-r--r-- | src/cpu/inorder/resource_pool.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/inorder/resource_pool.cc b/src/cpu/inorder/resource_pool.cc index d5b3a5115..0713783b3 100644 --- a/src/cpu/inorder/resource_pool.cc +++ b/src/cpu/inorder/resource_pool.cc @@ -508,7 +508,7 @@ ResourcePool::ResPoolEvent::ResPoolEvent(ResourcePool *_resPool, int stage_num, InstSeqNum seq_num, ThreadID _tid) - : Event(CPU_Tick_Pri), resPool(_resPool), + : Event(ResPool_Pri), resPool(_resPool), eventType(e_type), inst(_inst), seqNum(seq_num), stageNum(stage_num), tid(_tid) { } |