- Execution
status
- Current thread ID
- Current
source file name
- Current
proc (main or sub or function)
The execution could have one of these values :
- No program : no debuggee has been loaded
- loading debug
data : loading all the datas needed for debug, extracted from the exe. Normally very quickly
- loading
sources : loading the source codes files
- waiting with reason :
- no particular reason : before first execution or after step command
- cursor : stops after run to cursor command
- tempo break : stops after temporary breakpoint
- break : stops after permanent breakpoint
- break var : stops after variable breakpoint
- break mem : stops after memory breakpoint
- halt by user : stops after the user halts the debuggee
- access violation : stops after an access violation
- new thread : stops after a new thread is started
- auto : the debuggee is running automatically step by step
- running : the debuggee is running, command run
- fast running : the debuggee is mode fast running, command fast run
- released : the debuggee has been released, no debug
- terminated : the debuggee is finished (end of program, killed or crashed)