Consumer.hh (9230:33eb3c8a98b9) | Consumer.hh (9465:4ae4f3f4b870) |
---|---|
1/* 2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood 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; --- 25 unchanged lines hidden (view full) --- 34 35#ifndef __MEM_RUBY_COMMON_CONSUMER_HH__ 36#define __MEM_RUBY_COMMON_CONSUMER_HH__ 37 38#include <iostream> 39#include <set> 40 41#include "mem/ruby/common/TypeDefines.hh" | 1/* 2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood 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; --- 25 unchanged lines hidden (view full) --- 34 35#ifndef __MEM_RUBY_COMMON_CONSUMER_HH__ 36#define __MEM_RUBY_COMMON_CONSUMER_HH__ 37 38#include <iostream> 39#include <set> 40 41#include "mem/ruby/common/TypeDefines.hh" |
42#include "sim/eventq.hh" | 42#include "sim/clocked_object.hh" |
43 44class Consumer 45{ 46 public: | 43 44class Consumer 45{ 46 public: |
47 Consumer(EventManager *_em) | 47 Consumer(ClockedObject *_em) |
48 : m_last_scheduled_wakeup(0), m_last_wakeup(0), em(_em) 49 { 50 } 51 52 virtual 53 ~Consumer() 54 { } 55 --- 34 unchanged lines hidden (view full) --- 90 91 void scheduleEvent(Time timeDelta); 92 void scheduleEventAbsolute(Time timeAbs); 93 94 private: 95 Tick m_last_scheduled_wakeup; 96 std::set<Tick> m_scheduled_wakeups; 97 Tick m_last_wakeup; | 48 : m_last_scheduled_wakeup(0), m_last_wakeup(0), em(_em) 49 { 50 } 51 52 virtual 53 ~Consumer() 54 { } 55 --- 34 unchanged lines hidden (view full) --- 90 91 void scheduleEvent(Time timeDelta); 92 void scheduleEventAbsolute(Time timeAbs); 93 94 private: 95 Tick m_last_scheduled_wakeup; 96 std::set<Tick> m_scheduled_wakeups; 97 Tick m_last_wakeup; |
98 EventManager *em; | 98 ClockedObject *em; |
99 100 class ConsumerEvent : public Event 101 { 102 public: 103 ConsumerEvent(Consumer* _consumer) 104 : Event(Default_Pri, AutoDelete), m_consumer_ptr(_consumer) 105 { 106 } --- 21 unchanged lines hidden --- | 99 100 class ConsumerEvent : public Event 101 { 102 public: 103 ConsumerEvent(Consumer* _consumer) 104 : Event(Default_Pri, AutoDelete), m_consumer_ptr(_consumer) 105 { 106 } --- 21 unchanged lines hidden --- |