Skip to content

Commit

Permalink
markdown fix
Browse files Browse the repository at this point in the history
  • Loading branch information
antirez committed Jan 30, 2012
1 parent 06d6752 commit 6a200db
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions topics/debugging.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,11 @@ GDB will start and will attach to the running server printing something like the
0x00007fff8d4797e6 in epoll_wait ()
(gdb)

+ At this point GDB is attached but **your Redis instance is blocked by GDB**. In order to let the Redis instance continue the execution just type **continue** at the GDB prompt, and press enter:

+ At this point GDB is attached but **your Redis instance is blocked by GDB**. In order to let the Redis instance continue the execution just type **continue** at the GDB prompt, and press enter.

(gdb) continue
Continuing.


+ Done! Now your Redis instance has GDB attached. All you need is to wait for a rash...
+ Now it's time to detach from your screen / tmux session if you are running GDB using it, pressing the usual **Ctrl-a a** key combination.

Expand Down

0 comments on commit 6a200db

Please sign in to comment.