The tc needs to be protected instead of private so that the CpuEventWrapper can acces...
authorGabe Black <gblack@eecs.umich.edu>
Fri, 3 Nov 2006 16:05:56 +0000 (11:05 -0500)
committerGabe Black <gblack@eecs.umich.edu>
Fri, 3 Nov 2006 16:05:56 +0000 (11:05 -0500)
--HG--
extra : convert_revision : bd836d63ac3630b20dda552e7b289730f3c114ef

src/cpu/cpuevent.hh

index 9dfae27cf3f29899230c947f85d6603055bc6bab..3339f8252e720b88d3fda29dc95e0020ad95cf87 100644 (file)
@@ -44,7 +44,7 @@ class ThreadContext;
  * */
 class CpuEvent : public Event
 {
-  private:
+  protected:
     /** type of global list of cpu events. */
     typedef std::vector<CpuEvent *> CpuEventList;