Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugene Tarassov2013-06-08 19:32:11 +0000
committerEugene Tarassov2013-06-08 19:32:11 +0000
commit79765261262d7144766c1acefcf13faf96115cb4 (patch)
tree927118ed3117065297893599e587ff9812007520 /agent/tcf/framework/cpudefs.c
parent88c11eb62cb4526601c2014bb5fa0bf653c563b2 (diff)
downloadorg.eclipse.tcf.agent-79765261262d7144766c1acefcf13faf96115cb4.tar.gz
org.eclipse.tcf.agent-79765261262d7144766c1acefcf13faf96115cb4.tar.xz
org.eclipse.tcf.agent-79765261262d7144766c1acefcf13faf96115cb4.zip
TCF Agent: fixed intermittent assertion failure in ARM stepping logic
Diffstat (limited to 'agent/tcf/framework/cpudefs.c')
-rw-r--r--agent/tcf/framework/cpudefs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/agent/tcf/framework/cpudefs.c b/agent/tcf/framework/cpudefs.c
index 17faaca5..b599e52d 100644
--- a/agent/tcf/framework/cpudefs.c
+++ b/agent/tcf/framework/cpudefs.c
@@ -575,12 +575,12 @@ void write_location_pieces(Context * ctx, StackFrame * frame,
}
#if !defined(ENABLE_external_stepping_mode) || !ENABLE_external_stepping_mode
-int cpu_enable_stepping_mode (Context * ctx, uint32_t * is_cont) {
+int cpu_enable_stepping_mode(Context * ctx, uint32_t * is_cont) {
* is_cont = 0;
return 0;
}
-int cpu_disable_stepping_mode (Context * ctx) {
+int cpu_disable_stepping_mode(Context * ctx) {
return 0;
}
#endif

Back to the top