From: Gabe Black Date: Fri, 3 Nov 2006 16:05:56 +0000 (-0500) Subject: The tc needs to be protected instead of private so that the CpuEventWrapper can acces... X-Git-Tag: m5_2.0_beta2~53^2~55 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4a5cb3f4250544cd5cdf423405d66471b33c545c;p=gem5.git The tc needs to be protected instead of private so that the CpuEventWrapper can access it. --HG-- extra : convert_revision : bd836d63ac3630b20dda552e7b289730f3c114ef --- 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;