From 9e07a7504c94973e7837d1d3e96dbdb8d95cfad3 Mon Sep 17 00:00:00 2001 From: Mitch Hayenga Date: Wed, 30 Sep 2015 11:14:19 -0500 Subject: cpu,isa,mem: Add per-thread wakeup logic Changes wakeup functionality so that only specific threads on SMT capable cpus are woken. --- src/arch/null/cpu_dummy.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/arch/null') diff --git a/src/arch/null/cpu_dummy.hh b/src/arch/null/cpu_dummy.hh index f546b4141..6f6311bcb 100644 --- a/src/arch/null/cpu_dummy.hh +++ b/src/arch/null/cpu_dummy.hh @@ -47,7 +47,7 @@ class BaseCPU public: static int numSimulatedInsts() { return 0; } static int numSimulatedOps() { return 0; } - static void wakeup() { ; } + static void wakeup(ThreadID tid) { ; } }; #endif // __ARCH_NULL_CPU_DUMMY_HH__ -- cgit v1.2.3