3 weeks ago
I'm wondering what the debug command "Suspend" is for, when it can be selected, when to use it. Each time I look at the button, it's inactive.
NB:
Thank you.
Sandra
3 weeks ago
The command "Suspend" can be selected in the Eclipse ADT debugger when the debugger is "stepping", i.e. when the debugger has been started (i.e. it has stopped on a first break point) and the code is currently running (i.e. when continuing after a break point and before the next break point, if any).
The command "Suspend" suspends the execution as soon as possible (technical limitations like SQL running, minimal amount of time), anywhere in the code.
One reason to use it is when the code runs for a long time without pausing at one of your breakpoints, and you suspect a performance issue or an endless loop.
One frequent case is that a background job is running for a long time and has to be debugged for analyzing:
Remarks about the "old/new" SAP GUI backend debugger:
3 weeks ago
The command "Suspend" can be selected in the Eclipse ADT debugger when the debugger is "stepping", i.e. when the debugger has been started (i.e. it has stopped on a first break point) and the code is currently running (i.e. when continuing after a break point and before the next break point, if any).
The command "Suspend" suspends the execution as soon as possible (technical limitations like SQL running, minimal amount of time), anywhere in the code.
One reason to use it is when the code runs for a long time without pausing at one of your breakpoints, and you suspect a performance issue or an endless loop.
One frequent case is that a background job is running for a long time and has to be debugged for analyzing:
Remarks about the "old/new" SAP GUI backend debugger: