-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refresh not done when a breakpoint is HIT #16
Comments
For https://code.visualstudio.com/docs/cpp/launch-json-reference#_logging After you encounter a breakpoint, we should be generating requests for memory reads. Is that happening? If so, what does gdb/lldb/vddbg (not sure which backend you are using) report/return? If we are making the request and we are getting wrong results, then there is nothing we can do. |
I think it is reasonable to automatically refresh the current mem window when a breakpoint is encountered, but I don't know if the extension can obtain breakpoint information |
Of course, we always do an auto refresh. Why it is not working with this debugger is the question. We don't need breakpoint info for that. As you can see we keep track of the current status of the debug session. |
I use MSPDepug backend to test, and it print debugger access so for what I can say, the MemoryView do not send any request to the GDB server. When I run and hit a breakpoint here is the LOG: As you can see no update of the memory is done, only reading of local variable from If I go to the memory view and click on the UPDATE button, then I can see the reading occuring: |
Thanks for the update. We were able to reproduce the problem. We released an experimental fix to the marketplace which should be available shortly. This would not affect embedded debuggers -- it only affected very fast computers running native code. See also the ChangeLog Please give us feedback and close this issue if it is working okay for you. |
Hi, It seem to work now, so issue is FIXED for me. Thank you for your reactivity. |
Describe the bug
Refresh is not correctly done when hit a breakpoint (but it work when click on refresh button and when click on pause button)
To Reproduce
Steps to reproduce the behavior:
See the following GIF
Expected behavior
When the breakpoint hit, normally the view should refresh
Screenshots
Environment (please complete the following information):
The text was updated successfully, but these errors were encountered: