-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
patch to restore the breakpoint instruction after it is replaced with…
… the original instruction.
- Loading branch information
1 parent
e778a0b
commit ab78fbb
Showing
8 changed files
with
56 additions
and
16 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
|
||
void main() | ||
{ | ||
int x,y,z; | ||
x = y = 4; | ||
int i = 5; | ||
while(i > 0) | ||
{ | ||
z = x + y; | ||
--i; | ||
} | ||
} |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# TODO List | ||
|
||
- [x] Re-run debuggee after its termination(run command) | ||
- [x] Disable debugger commands if debuggee is terminated. | ||
- [ ] debuggee args are not supported(not even been read) | ||
- [ ] check for debugger command argc (each one in general). | ||
- [x] make sure the breakpoint work if a loop exist. | ||
- [ ] improve the displayed format of **register dump** command. | ||
- [ ] handle mis writting of break 0x**Address** command, if ***0x*** is not exist case and so on. | ||
- [ ] add command to delete a breakpoint by address. |
File renamed without changes.