diff options
author | Steve Reinhardt <stever@gmail.com> | 2008-06-28 13:19:38 -0400 |
---|---|---|
committer | Steve Reinhardt <stever@gmail.com> | 2008-06-28 13:19:38 -0400 |
commit | caaac16803db6eaf3ee20b5d062ec2211fe6584d (patch) | |
tree | d3664f74378429cc389c6e166aebaca7fbcd6963 /src/mem/bus.hh | |
parent | 6b45238316052f458ba9ebc9d24a91cfa9e41cf1 (diff) | |
download | gem5-caaac16803db6eaf3ee20b5d062ec2211fe6584d.tar.xz |
Backed out changeset 94a7bb476fca: caused memory leak.
Diffstat (limited to 'src/mem/bus.hh')
-rw-r--r-- | src/mem/bus.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mem/bus.hh b/src/mem/bus.hh index 7d476bb65..74901d626 100644 --- a/src/mem/bus.hh +++ b/src/mem/bus.hh @@ -364,7 +364,7 @@ class Bus : public MemObject /** A function used to return the port associated with this bus object. */ virtual Port *getPort(const std::string &if_name, int idx = -1); - virtual bool deletePort(Port *p); + virtual void deletePortRefs(Port *p); virtual void init(); virtual void startup(); |