small bugfix, forgot to increment iter
sim/system.cc:
oops, forgot to increment iter.
--HG--
extra : convert_revision : 95fcd337d00157ccf072f0eb301b76f280480839
This commit is contained in:
@@ -53,6 +53,7 @@ System::System(const std::string _name,
|
||||
if (bin == true) {
|
||||
Kernel = new Statistics::MainBin("non TCPIP Kernel stats");
|
||||
Kernel->activate();
|
||||
User = new Statistics::MainBin("User stats");
|
||||
} else
|
||||
Kernel = NULL;
|
||||
}
|
||||
@@ -136,7 +137,7 @@ System::serialize(std::ostream &os)
|
||||
int numCtxs = swCtxMap.size();
|
||||
SERIALIZE_SCALAR(numCtxs);
|
||||
SWContext *ctx;
|
||||
for (int i = 0; iter != end; ++i) {
|
||||
for (int i = 0; iter != end; ++i, ++iter) {
|
||||
paramOut(os, csprintf("Addr[%d]",i), (*iter).first);
|
||||
ctx = (*iter).second;
|
||||
paramOut(os, csprintf("calls[%d]",i), ctx->calls);
|
||||
|
||||
Reference in New Issue
Block a user