Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'agent/tcf/framework/cpudefs.c')
-rw-r--r--agent/tcf/framework/cpudefs.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/agent/tcf/framework/cpudefs.c b/agent/tcf/framework/cpudefs.c
index 2061471a..e0975e6a 100644
--- a/agent/tcf/framework/cpudefs.c
+++ b/agent/tcf/framework/cpudefs.c
@@ -579,6 +579,17 @@ 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) {
+ * is_cont = 0;
+ return 0;
+}
+
+int cpu_disable_stepping_mode (Context * ctx) {
+ return 0;
+}
+#endif
+
#if !defined(ENABLE_HardwareBreakpoints) || !ENABLE_HardwareBreakpoints
int cpu_bp_get_capabilities(Context * ctx) {
return 0;

Back to the top