summaryrefslogtreecommitdiff
path: root/src/base/remote_gdb.hh
diff options
context:
space:
mode:
authorSean Wilson <spwilson2@wisc.edu>2017-06-27 13:07:51 -0500
committerSean Wilson <spwilson2@wisc.edu>2017-07-12 20:07:05 +0000
commit55f70760de9cf9d16905372d885b7925722721a8 (patch)
tree1c80dc85a693aa06172602866c5bd641caee6407 /src/base/remote_gdb.hh
parent1b7bf4ed75b55fdfc55d901775c837377268b661 (diff)
downloadgem5-55f70760de9cf9d16905372d885b7925722721a8.tar.xz
sim, gdb: Refactor some Event subclasses into lambdas
Change-Id: If3e4329204f27eda96b50ec6ac279ebc6ef23d99 Signed-off-by: Sean Wilson <spwilson2@wisc.edu> Reviewed-on: https://gem5-review.googlesource.com/3921 Reviewed-by: Jason Lowe-Power <jason@lowepower.com> Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com> Maintainer: Andreas Sandberg <andreas.sandberg@arm.com>
Diffstat (limited to 'src/base/remote_gdb.hh')
-rw-r--r--src/base/remote_gdb.hh16
1 files changed, 2 insertions, 14 deletions
diff --git a/src/base/remote_gdb.hh b/src/base/remote_gdb.hh
index b7de0ae54..121faaf2e 100644
--- a/src/base/remote_gdb.hh
+++ b/src/base/remote_gdb.hh
@@ -260,20 +260,8 @@ class BaseRemoteGDB
return trap(SIGTRAP);
}
- protected:
- class SingleStepEvent : public Event
- {
- protected:
- BaseRemoteGDB *gdb;
-
- public:
- SingleStepEvent(BaseRemoteGDB *g) : gdb(g)
- {}
-
- void process();
- };
-
- SingleStepEvent singleStepEvent;
+ void processSingleStepEvent();
+ EventFunctionWrapper singleStepEvent;
void clearSingleStep();
void setSingleStep();