[Lldb-commits] [lldb] r183469 - Document the extended detach packet.
Jim Ingham
jingham at apple.com
Thu Jun 6 17:22:49 PDT 2013
Author: jingham
Date: Thu Jun 6 19:22:49 2013
New Revision: 183469
URL: http://llvm.org/viewvc/llvm-project?rev=183469&view=rev
Log:
Document the extended detach packet.
Modified:
lldb/trunk/docs/lldb-gdb-remote.txt
Modified: lldb/trunk/docs/lldb-gdb-remote.txt
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/docs/lldb-gdb-remote.txt?rev=183469&r1=183468&r2=183469&view=diff
==============================================================================
--- lldb/trunk/docs/lldb-gdb-remote.txt (original)
+++ lldb/trunk/docs/lldb-gdb-remote.txt Thu Jun 6 19:22:49 2013
@@ -699,6 +699,26 @@ The lack of 'permissions:' indicates tha
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
More information about the lldb-commits
mailing list