This repository was archived by the owner on Feb 20, 2024. It is now read-only.
Debugger/pull candidate/memory range watch/1#8
Open
bluehazzard wants to merge 11 commits intoobfuscated:masterfrom
Open
Debugger/pull candidate/memory range watch/1#8bluehazzard wants to merge 11 commits intoobfuscated:masterfrom
bluehazzard wants to merge 11 commits intoobfuscated:masterfrom
Conversation
Fire the event if the debugger is paused and no future commands are in the queue. Don't send debugger commands within this event, or you will end in a endless loop
SDK version not updated
Fire the event if the debugger is restarted by the user or a command
…ory range watches
Implement AddMemoryRange and modify DeleteWatch and HasWatch to be aware of memory watches
and store it in a memory watch
Implement * SetMemoryRangeValue(): Set a memory range from start address to x bytes at the value given in "value" parameter. The value is stored as binary and can be retrieved from "value" with wxString::To8BitData() and passed to "value" with wxString::From8BitData() * UpdateMemoryRangeWatches() * UpdateMemoryRangeWatch() Read the value of the memory at the specified address and update the watch accordingly
For this functions only stubs exist: SetMemoryRangeValue() UpdateMemoryRangeWatches() UpdateMemoryRangeWatch()
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request extends the debugger with memory range watches
http://forums.codeblocks.org/index.php/topic,21457.30.html
in addition it fixes a bug where debugger events are not fired
cb92b4a and adds additional debugger events that are needed for a complete debugger session detection
4c621f1 and 5240fe6