kill on debug panel hangs zeus
-
- Posts: 3
- Joined: Thu Nov 14, 2013 10:37 pm
kill on debug panel hangs zeus
Debugging golang program, set a breakpoint, did some stepping, then clicked "Kill" button on debug panel. Got a cursor wait and it didn't return from there after a couple of minutes.
I tried to replicate this but for me the Kill command is working fine 
Could you try the following:
When I do this I see the following output in the debugger output window:
If this is the case it should show up in the debugger output window.
There is also one other thing worth trying:
Cheers Jussi

Could you try the following:
- Use the Options, Editor Options menu and in the General section set the Document Display Mode to Create tiled.
- Close all but one simple Go file that you will be debugging
- Run the debugger, Step a few commands and then hit the Kill button
When I do this I see the following output in the debugger output window:
As shown above the debugger knows it is in terminal mode so it does not wait for use input. In your case I suspect what might be happening is the debugger is waiting for the user input.(gdb) kill
Kill the program being debugged? (y or n) [answered Y; input not from terminal]
If this is the case it should show up in the debugger output window.
There is also one other thing worth trying:
- Start the debugger
- In the Zeus Debugger Control panel Command Line field enter this command.
Code: Select all
set interactive-mode off
Cheers Jussi