Finish test clean-up & reorg.
[gem5.git] / src / sim / sim_events.hh
index 50368f258fe0b9bb53c006884beecb2a6d0d5ed5..3c4a9dd05f6814f960b737b880288530512e6859 100644 (file)
@@ -67,13 +67,13 @@ class SimLoopExitEvent : public Event
     virtual const char *description();
 };
 
-class CountedQuiesceEvent : public SimLoopExitEvent
+class CountedDrainEvent : public SimLoopExitEvent
 {
   private:
-    // Count down to quiescing
+    // Count of how many objects have not yet drained
     int count;
   public:
-    CountedQuiesceEvent()
+    CountedDrainEvent()
         : count(0)
     { }
     void process();