-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Suppress annoying popup about threads terminating.
- Loading branch information
Showing
2 changed files
with
30 additions
and
0 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,26 @@ | ||
|
||
Record a RR session. | ||
|
||
https://github.com/rr-debugger/rr/wiki/Usage | ||
|
||
$ rr record -n hellosegv one two three | ||
|
||
Replay the RR session in gdb. | ||
|
||
$ rr replay | ||
|
||
Using RR in a gui debugger. Basically, attach to the rr server port. | ||
|
||
https://github.com/rr-debugger/rr/wiki/Using-rr-in-an-IDE | ||
|
||
$ rr replay -s 50505 -k | ||
|
||
$ rr replay -s 50505 -k | ||
Launch gdb with | ||
gdb '-l' '10000' '-ex' 'set sysroot /' '-ex' 'target extended-remote 127.0.0.1:50505' /nas/erniep/Development/seer/tests/hellosegv/hellosegv | ||
|
||
In a different terminal, use "Connect" method in Debug dialog and connect to "127.0.0.1:50505". | ||
|
||
$ seergdb --connect localhost:50505 | ||
|
||
|