From 84393c31f2a503c9f8ae513e66107881a4afb693 Mon Sep 17 00:00:00 2001 From: johannst Date: Sun, 7 Jul 2019 18:13:45 +0200 Subject: gdb changed description indent easier to see commands --- gdb.txt | 39 ++++++++++++++++++++------------------- 1 file changed, 20 insertions(+), 19 deletions(-) diff --git a/gdb.txt b/gdb.txt index d62af95..47ecdce 100644 --- a/gdb.txt +++ b/gdb.txt @@ -21,38 +21,39 @@ prompt: *prompt* - tty - set as tty for debugee. make sure nobody reads from target - tty, easiest is to spawn a shell and run - > while true; do sleep 1024; done + tty set as tty for debugee. make sure nobody + reads from target tty, easiest is to spawn a shell + and run + > while true; do sleep 1024; done set follow-fork-mode - specify which process to follow on fork(2) + specify which process to follow on fork(2) sharedlibrary [regex] - load symbols of shared lib, if regex then only symbols for matching - libs + load symbols of shared lib, if regex then only symbols + for matching libs break thread - set a breakpoint only on a specific thread + set a breakpoint only on a specific thread - rbreak - set breakpoints based on symbols matching regex - is internally expanded to .*.* - so 'rbreak foo' matches barfoobar() + rbreak set breakpoints based on symbols matching regex + is internally expanded to .*.* + so 'rbreak foo' matches barfoobar() - command [bp_list] - define commands to run after breakpoint hit - if bp_list not supplied attach command to last created bp + command [bp_list] define commands to run after breakpoint hit if + bp_list not supplied attach command to last + created bp - bp_list: space separates list, eg 'command 2 5-8' - to run command for bp 2,5,6,7,8 + bp_list: space separates list, eg 'command 2 5-8' + to run command for bp 2,5,6,7,8 info functions [regex] - list functions according to regex, if regex empty, list all + list functions according to regex, if regex empty, + list all info variables [regex] - list variables according to regex, if regex empty, list all + list variables according to regex, if regex empty, + list all user commands: *user_commands* -- cgit v1.2.3