From b81a977e6ab7dbfd122cb778cfe3d40ca7451198 Mon Sep 17 00:00:00 2001 From: Andreas Sandberg Date: Fri, 2 Nov 2012 11:32:01 -0500 Subject: sim: Move the draining interface into a separate base class This patch moves the draining interface from SimObject to a separate class that can be used by any object needing draining. However, objects not visible to the Python code (i.e., objects not deriving from SimObject) still depend on their parents informing them when to drain. This patch also gets rid of the CountedDrainEvent (which isn't really an event) and replaces it with a DrainManager. --- src/mem/noncoherent_bus.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mem/noncoherent_bus.hh') diff --git a/src/mem/noncoherent_bus.hh b/src/mem/noncoherent_bus.hh index 16cf7deda..a42c26b2e 100644 --- a/src/mem/noncoherent_bus.hh +++ b/src/mem/noncoherent_bus.hh @@ -207,7 +207,7 @@ class NoncoherentBus : public BaseBus NoncoherentBus(const NoncoherentBusParams *p); - unsigned int drain(Event *de); + unsigned int drain(DrainManager *dm); }; -- cgit v1.2.3