base.hh (5536:17c0c17726ff) base.hh (5606:6da7a58b0bc8)
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;

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

60class CPUProgressEvent : public Event
61{
62 protected:
63 Tick interval;
64 Counter lastNumInst;
65 BaseCPU *cpu;
66
67 public:
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;

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

60class CPUProgressEvent : public Event
61{
62 protected:
63 Tick interval;
64 Counter lastNumInst;
65 BaseCPU *cpu;
66
67 public:
68 CPUProgressEvent(EventQueue *q, Tick ival, BaseCPU *_cpu);
68 CPUProgressEvent(BaseCPU *_cpu, Tick ival);
69
70 void process();
71
72 virtual const char *description() const;
73};
74
75class BaseCPU : public MemObject
76{

--- 200 unchanged lines hidden ---
69
70 void process();
71
72 virtual const char *description() const;
73};
74
75class BaseCPU : public MemObject
76{

--- 200 unchanged lines hidden ---