From cb1e8497dff1b26c11fff6881eaf4fb93c39f151 Mon Sep 17 00:00:00 2001 From: Chris Johns Date: Tue, 25 Jun 2019 21:07:40 +1000 Subject: libdebugger: ARM fixes for Cortex-A8 and ARM mode. - Fix destorying the target and thread parts. - Fix the ARM backend to support Cortex-A8 and ARM mode code. - Use the DBGDSCR interrupt mask when single stepping. - Use the DBGDSCR method of entry to debug mode to filter the execptions. - Add support for BSPs to control the ARM backend. --- cpukit/libdebugger/rtems-debugger-server.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpukit/libdebugger/rtems-debugger-server.c') diff --git a/cpukit/libdebugger/rtems-debugger-server.c b/cpukit/libdebugger/rtems-debugger-server.c index de841292cb..975ec23a30 100644 --- a/cpukit/libdebugger/rtems-debugger-server.c +++ b/cpukit/libdebugger/rtems-debugger-server.c @@ -1704,13 +1704,13 @@ rtems_debugger_session(void) r = rtems_debugger_target_create(); if (r < 0) { - rtems_debugger_thread_destroy(); rtems_debugger_unlock(); return r; } r = rtems_debugger_thread_create(); if (r < 0) { + rtems_debugger_target_destroy(); rtems_debugger_unlock(); return r; } @@ -1725,8 +1725,8 @@ rtems_debugger_session(void) 0, &rtems_debugger->events_task); if (r < 0) { - rtems_debugger_target_destroy(); rtems_debugger_thread_destroy(); + rtems_debugger_target_destroy(); rtems_debugger_unlock(); return r; } -- cgit v1.2.3