diff options
author | Joe Gross <joe.gross@amd.com> | 2015-09-16 13:10:42 -0400 |
---|---|---|
committer | Joe Gross <joe.gross@amd.com> | 2015-09-16 13:10:42 -0400 |
commit | 950e431d8766a8cf3b897965c1726e6d2576c6dc (patch) | |
tree | 9fdb60b695b97e276aaec84ed4024a943ddd851e /src/mem/slicc | |
parent | c5058c0c007532c4c2dda5f8e24a92cccc010508 (diff) | |
download | gem5-950e431d8766a8cf3b897965c1726e6d2576c6dc.tar.xz |
ruby: fix message buffer init order
The recent changes to make MessageBuffers SimObjects required them to be
initialized in a particular order, which could break some protocols. Fix this
by calling initNetQueues on the external nodes of each external link in the
constructor of Network.
This patch also refactors the duplicated code for checking network allocation
and setting net queues (which are called by initNetQueues) from the simple and
garnet networks to be in Network.
Diffstat (limited to 'src/mem/slicc')
-rw-r--r-- | src/mem/slicc/symbols/StateMachine.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mem/slicc/symbols/StateMachine.py b/src/mem/slicc/symbols/StateMachine.py index 015d902b4..480a6445d 100644 --- a/src/mem/slicc/symbols/StateMachine.py +++ b/src/mem/slicc/symbols/StateMachine.py @@ -592,7 +592,6 @@ void $c_ident::init() { // initialize objects - initNetQueues(); ''') code.indent() |