Document the extended detach packet.

llvm-svn: 183469
This commit is contained in:
Jim Ingham 2013-06-07 00:22:49 +00:00
parent 0ae9391824
commit 679f6b7c2f

View File

@ -698,6 +698,26 @@ For instance, with a Mac OS X process which has nothing mapped in the first
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
//