diff options
author | Sean Wilson <spwilson2@wisc.edu> | 2017-06-28 11:18:55 -0500 |
---|---|---|
committer | Sean Wilson <spwilson2@wisc.edu> | 2017-07-12 20:07:05 +0000 |
commit | ea57eee60cca92277f9f8d1f2abf501ca158be2e (patch) | |
tree | 385d547c13e01c4df67d4de0fe836f57ae6abb17 /src/dev/net/etherbus.hh | |
parent | 60adacb5716d91b9838fbb5e2b0d3e766c1cfdb1 (diff) | |
download | gem5-ea57eee60cca92277f9f8d1f2abf501ca158be2e.tar.xz |
net: Refactor some Event subclasses to lambdas
Change-Id: I0e23f1529b26c36d749bf5211ee8623744d0b10f
Signed-off-by: Sean Wilson <spwilson2@wisc.edu>
Reviewed-on: https://gem5-review.googlesource.com/3927
Maintainer: Jason Lowe-Power <jason@lowepower.com>
Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com>
Diffstat (limited to 'src/dev/net/etherbus.hh')
-rw-r--r-- | src/dev/net/etherbus.hh | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/src/dev/net/etherbus.hh b/src/dev/net/etherbus.hh index 7395c28d8..1b264533c 100644 --- a/src/dev/net/etherbus.hh +++ b/src/dev/net/etherbus.hh @@ -52,19 +52,7 @@ class EtherBus : public EtherObject bool loopback; protected: - class DoneEvent : public Event - { - protected: - EtherBus *bus; - - public: - DoneEvent(EtherBus *b) : bus(b) {} - virtual void process() { bus->txDone(); } - virtual const char *description() const - { return "ethernet bus completion"; } - }; - - DoneEvent event; + EventFunctionWrapper event; EthPacketPtr packet; EtherInt *sender; EtherDump *dump; |