summaryrefslogtreecommitdiff
path: root/src/cpu/base.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/cpu/base.hh')
-rw-r--r--src/cpu/base.hh24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/cpu/base.hh b/src/cpu/base.hh
index d73f4a2d5..cb23cb1ba 100644
--- a/src/cpu/base.hh
+++ b/src/cpu/base.hh
@@ -465,30 +465,6 @@ class BaseCPU : public ClockedObject
*/
uint64_t getCurrentInstCount(ThreadID tid);
- Tick
- nextInstEventCount(ThreadID tid)
- {
- return threadContexts[tid]->nextInstEventCount();
- }
-
- void
- serviceInstCountEvents(ThreadID tid, Tick count)
- {
- threadContexts[tid]->serviceInstCountEvents(count);
- }
-
- void
- scheduleInstCountEvent(ThreadID tid, Event *event, Tick count)
- {
- threadContexts[tid]->scheduleInstCountEvent(event, count);
- }
-
- void
- descheduleInstCountEvent(ThreadID tid, Event *event)
- {
- threadContexts[tid]->descheduleInstCountEvent(event);
- }
-
public:
/**
* @{