diff options
| author | Jim Ingham <jingham@apple.com> | 2013-06-07 00:22:49 +0000 |
|---|---|---|
| committer | Jim Ingham <jingham@apple.com> | 2013-06-07 00:22:49 +0000 |
| commit | 679f6b7c2f9bdf9324dcbcb2036b6650a3fb7384 (patch) | |
| tree | a043cba8f958ae0b68a10f9d2f43aed566c4f302 /lldb/docs | |
| parent | 0ae939182427c1f8b6db35bea33b07379ffdfacc (diff) | |
| download | bcm5719-llvm-679f6b7c2f9bdf9324dcbcb2036b6650a3fb7384.tar.gz bcm5719-llvm-679f6b7c2f9bdf9324dcbcb2036b6650a3fb7384.zip | |
Document the extended detach packet.
llvm-svn: 183469
Diffstat (limited to 'lldb/docs')
| -rw-r--r-- | lldb/docs/lldb-gdb-remote.txt | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lldb/docs/lldb-gdb-remote.txt b/lldb/docs/lldb-gdb-remote.txt index 631b3464948..1ceda81a174 100644 --- a/lldb/docs/lldb-gdb-remote.txt +++ b/lldb/docs/lldb-gdb-remote.txt @@ -699,6 +699,26 @@ The lack of 'permissions:' indicates that none of read/write/execute are valid for this region. //---------------------------------------------------------------------- +// Detach and stay stopped: +// +// We extended the "D" packet to specify that the monitor should keep the +// target suspended on detach. The normal behavior is to resume execution +// on detach. We will send: +// +// qSupportsDetachAndStayStopped: +// +// to query whether the monitor supports the extended detach, and if it does, +// when we want the monitor to detach but not resume the target, we will +// send: +// +// D1 +// +// In any case, if we want the normal detach behavior we will just send: +// +// D +//---------------------------------------------------------------------- + +//---------------------------------------------------------------------- // Stop reply packet extensions // // BRIEF |

