From 4a5cb3f4250544cd5cdf423405d66471b33c545c Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Fri, 3 Nov 2006 11:05:56 -0500 Subject: [PATCH] The tc needs to be protected instead of private so that the CpuEventWrapper can access it. --HG-- extra : convert_revision : bd836d63ac3630b20dda552e7b289730f3c114ef --- src/cpu/cpuevent.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cpu/cpuevent.hh b/src/cpu/cpuevent.hh index 9dfae27cf..3339f8252 100644 --- a/src/cpu/cpuevent.hh +++ b/src/cpu/cpuevent.hh @@ -44,7 +44,7 @@ class ThreadContext; * */ class CpuEvent : public Event { - private: + protected: /** type of global list of cpu events. */ typedef std::vector CpuEventList;