system.cc (10367:bf52480abd01) system.cc (10375:b1bc989611da)
1/*
2 * Copyright (c) 2011-2014 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 404 unchanged lines hidden (view full) ---

413
414 workItemStats[workid]->sample(samp);
415 lastWorkItemStarted.erase(p);
416}
417
418void
419System::printSystems()
420{
1/*
2 * Copyright (c) 2011-2014 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 404 unchanged lines hidden (view full) ---

413
414 workItemStats[workid]->sample(samp);
415 lastWorkItemStarted.erase(p);
416}
417
418void
419System::printSystems()
420{
421 ios::fmtflags flags(cerr.flags());
422
421 vector<System *>::iterator i = systemList.begin();
422 vector<System *>::iterator end = systemList.end();
423 for (; i != end; ++i) {
424 System *sys = *i;
425 cerr << "System " << sys->name() << ": " << hex << sys << endl;
426 }
423 vector<System *>::iterator i = systemList.begin();
424 vector<System *>::iterator end = systemList.end();
425 for (; i != end; ++i) {
426 System *sys = *i;
427 cerr << "System " << sys->name() << ": " << hex << sys << endl;
428 }
429
430 cerr.flags(flags);
427}
428
429void
430printSystems()
431{
432 System::printSystems();
433}
434

--- 42 unchanged lines hidden ---
431}
432
433void
434printSystems()
435{
436 System::printSystems();
437}
438

--- 42 unchanged lines hidden ---