libdebugger/target: Move global stepping variables in to the target data

Updates #5098
This commit is contained in:
Chris Johns
2024-08-05 11:34:29 +10:00
parent f29986391d
commit 6a367f4689
3 changed files with 40 additions and 23 deletions

View File

@@ -107,6 +107,9 @@ typedef struct rtems_debugger_target {
rtems_debugger_block swbreaks; /*<< The software breakpoint block. */
bool memory_access; /*<< Accessing target memory. */
jmp_buf access_return; /*<< Return from an access fault. */
uintptr_t step_bp_address; /*<< Stepping break point address */
rtems_id step_tid; /*<< Stepping task id */
} rtems_debugger_target;
/**