base.cc (4000:9bf49767a9e4) base.cc (4031:bf191145b7c9)
1/*
2 * Copyright (c) 2002-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

221BaseCPU::startup()
222{
223#if FULL_SYSTEM
224 if (!params->deferRegistration && profileEvent)
225 profileEvent->schedule(curTick);
226#endif
227
228 if (params->progress_interval) {
1/*
2 * Copyright (c) 2002-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

221BaseCPU::startup()
222{
223#if FULL_SYSTEM
224 if (!params->deferRegistration && profileEvent)
225 profileEvent->schedule(curTick);
226#endif
227
228 if (params->progress_interval) {
229 new CPUProgressEvent(&mainEventQueue, params->progress_interval,
229 new CPUProgressEvent(&mainEventQueue,
230 cycles(params->progress_interval),
230 this);
231 }
232}
233
234
235void
236BaseCPU::regStats()
237{

--- 206 unchanged lines hidden ---
231 this);
232 }
233}
234
235
236void
237BaseCPU::regStats()
238{

--- 206 unchanged lines hidden ---