61d60
< #include "mem/ruby/common/Consumer.hh"
73c72
< class Profiler : public SimObject, public Consumer
---
> class Profiler : public SimObject
246a246,259
>
> protected:
> class ProfileEvent : public Event
> {
> public:
> ProfileEvent(Profiler *_profiler)
> {
> profiler = _profiler;
> }
> private:
> void process() { profiler->wakeup(); }
> Profiler *profiler;
> };
> ProfileEvent m_event;
258,259d270
<
<