Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

375 lines
23KB

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <html>
  3. <!-- Copyright (C) 1988-2020 Free Software Foundation, Inc.
  4. Permission is granted to copy, distribute and/or modify this document
  5. under the terms of the GNU Free Documentation License, Version 1.3 or
  6. any later version published by the Free Software Foundation; with the
  7. Invariant Sections being "Free Software" and "Free Software Needs
  8. Free Documentation", with the Front-Cover Texts being "A GNU Manual,"
  9. and with the Back-Cover Texts as in (a) below.
  10. (a) The FSF's Back-Cover Text is: "You are free to copy and modify
  11. this GNU Manual. Buying copies from GNU Press supports the FSF in
  12. developing GNU and promoting software freedom." -->
  13. <!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
  14. <head>
  15. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  16. <title>Remote Configuration (Debugging with GDB)</title>
  17. <meta name="description" content="Remote Configuration (Debugging with GDB)">
  18. <meta name="keywords" content="Remote Configuration (Debugging with GDB)">
  19. <meta name="resource-type" content="document">
  20. <meta name="distribution" content="global">
  21. <meta name="Generator" content="makeinfo">
  22. <link href="index.html#Top" rel="start" title="Top">
  23. <link href="Concept-Index.html#Concept-Index" rel="index" title="Concept Index">
  24. <link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
  25. <link href="Remote-Debugging.html#Remote-Debugging" rel="up" title="Remote Debugging">
  26. <link href="Remote-Stub.html#Remote-Stub" rel="next" title="Remote Stub">
  27. <link href="Server.html#Server" rel="prev" title="Server">
  28. <style type="text/css">
  29. <!--
  30. a.summary-letter {text-decoration: none}
  31. blockquote.indentedblock {margin-right: 0em}
  32. blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
  33. blockquote.smallquotation {font-size: smaller}
  34. div.display {margin-left: 3.2em}
  35. div.example {margin-left: 3.2em}
  36. div.lisp {margin-left: 3.2em}
  37. div.smalldisplay {margin-left: 3.2em}
  38. div.smallexample {margin-left: 3.2em}
  39. div.smalllisp {margin-left: 3.2em}
  40. kbd {font-style: oblique}
  41. pre.display {font-family: inherit}
  42. pre.format {font-family: inherit}
  43. pre.menu-comment {font-family: serif}
  44. pre.menu-preformatted {font-family: serif}
  45. pre.smalldisplay {font-family: inherit; font-size: smaller}
  46. pre.smallexample {font-size: smaller}
  47. pre.smallformat {font-family: inherit; font-size: smaller}
  48. pre.smalllisp {font-size: smaller}
  49. span.nolinebreak {white-space: nowrap}
  50. span.roman {font-family: initial; font-weight: normal}
  51. span.sansserif {font-family: sans-serif; font-weight: normal}
  52. ul.no-bullet {list-style: none}
  53. -->
  54. </style>
  55. </head>
  56. <body lang="en">
  57. <a name="Remote-Configuration"></a>
  58. <div class="header">
  59. <p>
  60. Next: <a href="Remote-Stub.html#Remote-Stub" accesskey="n" rel="next">Remote Stub</a>, Previous: <a href="Server.html#Server" accesskey="p" rel="prev">Server</a>, Up: <a href="Remote-Debugging.html#Remote-Debugging" accesskey="u" rel="up">Remote Debugging</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Concept-Index.html#Concept-Index" title="Index" rel="index">Index</a>]</p>
  61. </div>
  62. <hr>
  63. <a name="Remote-Configuration-1"></a>
  64. <h3 class="section">20.4 Remote Configuration</h3>
  65. <a name="index-set-remote"></a>
  66. <a name="index-show-remote"></a>
  67. <p>This section documents the configuration options available when
  68. debugging remote programs. For the options related to the File I/O
  69. extensions of the remote protocol, see <a href="system.html#system">system-call-allowed</a>.
  70. </p>
  71. <dl compact="compact">
  72. <dt><code>set remoteaddresssize <var>bits</var></code></dt>
  73. <dd><a name="index-address-size-for-remote-targets"></a>
  74. <a name="index-bits-in-remote-address"></a>
  75. <p>Set the maximum size of address in a memory packet to the specified
  76. number of bits. <small>GDB</small> will mask off the address bits above
  77. that number, when it passes addresses to the remote target. The
  78. default value is the number of bits in the target&rsquo;s address.
  79. </p>
  80. </dd>
  81. <dt><code>show remoteaddresssize</code></dt>
  82. <dd><p>Show the current value of remote address size in bits.
  83. </p>
  84. </dd>
  85. <dt><code>set serial baud <var>n</var></code></dt>
  86. <dd><a name="index-baud-rate-for-remote-targets"></a>
  87. <p>Set the baud rate for the remote serial I/O to <var>n</var> baud. The
  88. value is used to set the speed of the serial port used for debugging
  89. remote targets.
  90. </p>
  91. </dd>
  92. <dt><code>show serial baud</code></dt>
  93. <dd><p>Show the current speed of the remote connection.
  94. </p>
  95. </dd>
  96. <dt><code>set serial parity <var>parity</var></code></dt>
  97. <dd><p>Set the parity for the remote serial I/O. Supported values of <var>parity</var> are:
  98. <code>even</code>, <code>none</code>, and <code>odd</code>. The default is <code>none</code>.
  99. </p>
  100. </dd>
  101. <dt><code>show serial parity</code></dt>
  102. <dd><p>Show the current parity of the serial port.
  103. </p>
  104. </dd>
  105. <dt><code>set remotebreak</code></dt>
  106. <dd><a name="index-interrupt-remote-programs"></a>
  107. <a name="index-BREAK-signal-instead-of-Ctrl_002dC"></a>
  108. <a name="set-remotebreak"></a><p>If set to on, <small>GDB</small> sends a <code>BREAK</code> signal to the remote
  109. when you type <kbd>Ctrl-c</kbd> to interrupt the program running
  110. on the remote. If set to off, <small>GDB</small> sends the &lsquo;<samp>Ctrl-C</samp>&rsquo;
  111. character instead. The default is off, since most remote systems
  112. expect to see &lsquo;<samp>Ctrl-C</samp>&rsquo; as the interrupt signal.
  113. </p>
  114. </dd>
  115. <dt><code>show remotebreak</code></dt>
  116. <dd><p>Show whether <small>GDB</small> sends <code>BREAK</code> or &lsquo;<samp>Ctrl-C</samp>&rsquo; to
  117. interrupt the remote program.
  118. </p>
  119. </dd>
  120. <dt><code>set remoteflow on</code></dt>
  121. <dt><code>set remoteflow off</code></dt>
  122. <dd><a name="index-set-remoteflow"></a>
  123. <p>Enable or disable hardware flow control (<code>RTS</code>/<code>CTS</code>)
  124. on the serial port used to communicate to the remote target.
  125. </p>
  126. </dd>
  127. <dt><code>show remoteflow</code></dt>
  128. <dd><a name="index-show-remoteflow"></a>
  129. <p>Show the current setting of hardware flow control.
  130. </p>
  131. </dd>
  132. <dt><code>set remotelogbase <var>base</var></code></dt>
  133. <dd><p>Set the base (a.k.a. radix) of logging serial protocol
  134. communications to <var>base</var>. Supported values of <var>base</var> are:
  135. <code>ascii</code>, <code>octal</code>, and <code>hex</code>. The default is
  136. <code>ascii</code>.
  137. </p>
  138. </dd>
  139. <dt><code>show remotelogbase</code></dt>
  140. <dd><p>Show the current setting of the radix for logging remote serial
  141. protocol.
  142. </p>
  143. </dd>
  144. <dt><code>set remotelogfile <var>file</var></code></dt>
  145. <dd><a name="index-record-serial-communications-on-file"></a>
  146. <p>Record remote serial communications on the named <var>file</var>. The
  147. default is not to record at all.
  148. </p>
  149. </dd>
  150. <dt><code>show remotelogfile</code></dt>
  151. <dd><p>Show the current setting of the file name on which to record the
  152. serial communications.
  153. </p>
  154. </dd>
  155. <dt><code>set remotetimeout <var>num</var></code></dt>
  156. <dd><a name="index-timeout-for-serial-communications"></a>
  157. <a name="index-remote-timeout"></a>
  158. <p>Set the timeout limit to wait for the remote target to respond to
  159. <var>num</var> seconds. The default is 2 seconds.
  160. </p>
  161. </dd>
  162. <dt><code>show remotetimeout</code></dt>
  163. <dd><p>Show the current number of seconds to wait for the remote target
  164. responses.
  165. </p>
  166. <a name="index-limit-hardware-breakpoints-and-watchpoints"></a>
  167. <a name="index-remote-target_002c-limit-break_002d-and-watchpoints"></a>
  168. <a name="set-remote-hardware_002dwatchpoint_002dlimit"></a><a name="set-remote-hardware_002dbreakpoint_002dlimit"></a></dd>
  169. <dt><code>set remote hardware-watchpoint-limit <var>limit</var></code></dt>
  170. <dt><code>set remote hardware-breakpoint-limit <var>limit</var></code></dt>
  171. <dd><p>Restrict <small>GDB</small> to using <var>limit</var> remote hardware watchpoints
  172. or breakpoints. The <var>limit</var> can be set to 0 to disable hardware
  173. watchpoints or breakpoints, and <code>unlimited</code> for unlimited
  174. watchpoints or breakpoints.
  175. </p>
  176. </dd>
  177. <dt><code>show remote hardware-watchpoint-limit</code></dt>
  178. <dt><code>show remote hardware-breakpoint-limit</code></dt>
  179. <dd><p>Show the current limit for the number of hardware watchpoints or
  180. breakpoints that <small>GDB</small> can use.
  181. </p>
  182. <a name="index-limit-hardware-watchpoints-length"></a>
  183. <a name="index-remote-target_002c-limit-watchpoints-length"></a>
  184. <a name="set-remote-hardware_002dwatchpoint_002dlength_002dlimit"></a></dd>
  185. <dt><code>set remote hardware-watchpoint-length-limit <var>limit</var></code></dt>
  186. <dd><p>Restrict <small>GDB</small> to using <var>limit</var> bytes for the maximum
  187. length of a remote hardware watchpoint. A <var>limit</var> of 0 disables
  188. hardware watchpoints and <code>unlimited</code> allows watchpoints of any
  189. length.
  190. </p>
  191. </dd>
  192. <dt><code>show remote hardware-watchpoint-length-limit</code></dt>
  193. <dd><p>Show the current limit (in bytes) of the maximum length of
  194. a remote hardware watchpoint.
  195. </p>
  196. </dd>
  197. <dt><code>set remote exec-file <var>filename</var></code></dt>
  198. <dt><code>show remote exec-file</code></dt>
  199. <dd><a name="set-remote-exec_002dfile"></a><a name="index-executable-file_002c-for-remote-target"></a>
  200. <p>Select the file used for <code>run</code> with <code>target
  201. extended-remote</code>. This should be set to a filename valid on the
  202. target system. If it is not set, the target will use a default
  203. filename (e.g. the last program run).
  204. </p>
  205. </dd>
  206. <dt><code>set remote interrupt-sequence</code></dt>
  207. <dd><a name="index-interrupt-remote-programs-1"></a>
  208. <a name="index-select-Ctrl_002dC_002c-BREAK-or-BREAK_002dg"></a>
  209. <p>Allow the user to select one of &lsquo;<samp>Ctrl-C</samp>&rsquo;, a <code>BREAK</code> or
  210. &lsquo;<samp>BREAK-g</samp>&rsquo; as the
  211. sequence to the remote target in order to interrupt the execution.
  212. &lsquo;<samp>Ctrl-C</samp>&rsquo; is a default. Some system prefers <code>BREAK</code> which
  213. is high level of serial line for some certain time.
  214. Linux kernel prefers &lsquo;<samp>BREAK-g</samp>&rsquo;, a.k.a Magic SysRq g.
  215. It is <code>BREAK</code> signal followed by character <code>g</code>.
  216. </p>
  217. </dd>
  218. <dt><code>show interrupt-sequence</code></dt>
  219. <dd><p>Show which of &lsquo;<samp>Ctrl-C</samp>&rsquo;, <code>BREAK</code> or <code>BREAK-g</code>
  220. is sent by <small>GDB</small> to interrupt the remote program.
  221. <code>BREAK-g</code> is BREAK signal followed by <code>g</code> and
  222. also known as Magic SysRq g.
  223. </p>
  224. </dd>
  225. <dt><code>set remote interrupt-on-connect</code></dt>
  226. <dd><a name="index-send-interrupt_002dsequence-on-start"></a>
  227. <p>Specify whether interrupt-sequence is sent to remote target when
  228. <small>GDB</small> connects to it. This is mostly needed when you debug
  229. Linux kernel. Linux kernel expects <code>BREAK</code> followed by <code>g</code>
  230. which is known as Magic SysRq g in order to connect <small>GDB</small>.
  231. </p>
  232. </dd>
  233. <dt><code>show interrupt-on-connect</code></dt>
  234. <dd><p>Show whether interrupt-sequence is sent
  235. to remote target when <small>GDB</small> connects to it.
  236. </p>
  237. <a name="index-set-tcp"></a>
  238. <a name="index-show-tcp"></a>
  239. </dd>
  240. <dt><code>set tcp auto-retry on</code></dt>
  241. <dd><a name="index-auto_002dretry_002c-for-remote-TCP-target"></a>
  242. <p>Enable auto-retry for remote TCP connections. This is useful if the remote
  243. debugging agent is launched in parallel with <small>GDB</small>; there is a race
  244. condition because the agent may not become ready to accept the connection
  245. before <small>GDB</small> attempts to connect. When auto-retry is
  246. enabled, if the initial attempt to connect fails, <small>GDB</small> reattempts
  247. to establish the connection using the timeout specified by
  248. <code>set tcp connect-timeout</code>.
  249. </p>
  250. </dd>
  251. <dt><code>set tcp auto-retry off</code></dt>
  252. <dd><p>Do not auto-retry failed TCP connections.
  253. </p>
  254. </dd>
  255. <dt><code>show tcp auto-retry</code></dt>
  256. <dd><p>Show the current auto-retry setting.
  257. </p>
  258. </dd>
  259. <dt><code>set tcp connect-timeout <var>seconds</var></code></dt>
  260. <dt><code>set tcp connect-timeout unlimited</code></dt>
  261. <dd><a name="index-connection-timeout_002c-for-remote-TCP-target"></a>
  262. <a name="index-timeout_002c-for-remote-target-connection"></a>
  263. <p>Set the timeout for establishing a TCP connection to the remote target to
  264. <var>seconds</var>. The timeout affects both polling to retry failed connections
  265. (enabled by <code>set tcp auto-retry on</code>) and waiting for connections
  266. that are merely slow to complete, and represents an approximate cumulative
  267. value. If <var>seconds</var> is <code>unlimited</code>, there is no timeout and
  268. <small>GDB</small> will keep attempting to establish a connection forever,
  269. unless interrupted with <kbd>Ctrl-c</kbd>. The default is 15 seconds.
  270. </p>
  271. </dd>
  272. <dt><code>show tcp connect-timeout</code></dt>
  273. <dd><p>Show the current connection timeout setting.
  274. </p></dd>
  275. </dl>
  276. <a name="index-remote-packets_002c-enabling-and-disabling"></a>
  277. <p>The <small>GDB</small> remote protocol autodetects the packets supported by
  278. your debugging stub. If you need to override the autodetection, you
  279. can use these commands to enable or disable individual packets. Each
  280. packet can be set to &lsquo;<samp>on</samp>&rsquo; (the remote target supports this
  281. packet), &lsquo;<samp>off</samp>&rsquo; (the remote target does not support this packet),
  282. or &lsquo;<samp>auto</samp>&rsquo; (detect remote target support for this packet). They
  283. all default to &lsquo;<samp>auto</samp>&rsquo;. For more information about each packet,
  284. see <a href="Remote-Protocol.html#Remote-Protocol">Remote Protocol</a>.
  285. </p>
  286. <p>During normal use, you should not have to use any of these commands.
  287. If you do, that may be a bug in your remote debugging stub, or a bug
  288. in <small>GDB</small>. You may want to report the problem to the
  289. <small>GDB</small> developers.
  290. </p>
  291. <p>For each packet <var>name</var>, the command to enable or disable the
  292. packet is <code>set remote <var>name</var>-packet</code>. The available settings
  293. are:
  294. </p>
  295. <table>
  296. <tr><td width="28%">Command Name</td><td width="32%">Remote Packet</td><td width="25%">Related Features</td></tr>
  297. <tr><td width="28%"><code>fetch-register</code></td><td width="32%"><code>p</code></td><td width="25%"><code>info registers</code></td></tr>
  298. <tr><td width="28%"><code>set-register</code></td><td width="32%"><code>P</code></td><td width="25%"><code>set</code></td></tr>
  299. <tr><td width="28%"><code>binary-download</code></td><td width="32%"><code>X</code></td><td width="25%"><code>load</code>, <code>set</code></td></tr>
  300. <tr><td width="28%"><code>read-aux-vector</code></td><td width="32%"><code>qXfer:auxv:read</code></td><td width="25%"><code>info auxv</code></td></tr>
  301. <tr><td width="28%"><code>symbol-lookup</code></td><td width="32%"><code>qSymbol</code></td><td width="25%">Detecting multiple threads</td></tr>
  302. <tr><td width="28%"><code>attach</code></td><td width="32%"><code>vAttach</code></td><td width="25%"><code>attach</code></td></tr>
  303. <tr><td width="28%"><code>verbose-resume</code></td><td width="32%"><code>vCont</code></td><td width="25%">Stepping or resuming multiple threads</td></tr>
  304. <tr><td width="28%"><code>run</code></td><td width="32%"><code>vRun</code></td><td width="25%"><code>run</code></td></tr>
  305. <tr><td width="28%"><code>software-breakpoint</code></td><td width="32%"><code>Z0</code></td><td width="25%"><code>break</code></td></tr>
  306. <tr><td width="28%"><code>hardware-breakpoint</code></td><td width="32%"><code>Z1</code></td><td width="25%"><code>hbreak</code></td></tr>
  307. <tr><td width="28%"><code>write-watchpoint</code></td><td width="32%"><code>Z2</code></td><td width="25%"><code>watch</code></td></tr>
  308. <tr><td width="28%"><code>read-watchpoint</code></td><td width="32%"><code>Z3</code></td><td width="25%"><code>rwatch</code></td></tr>
  309. <tr><td width="28%"><code>access-watchpoint</code></td><td width="32%"><code>Z4</code></td><td width="25%"><code>awatch</code></td></tr>
  310. <tr><td width="28%"><code>pid-to-exec-file</code></td><td width="32%"><code>qXfer:exec-file:read</code></td><td width="25%"><code>attach</code>, <code>run</code></td></tr>
  311. <tr><td width="28%"><code>target-features</code></td><td width="32%"><code>qXfer:features:read</code></td><td width="25%"><code>set architecture</code></td></tr>
  312. <tr><td width="28%"><code>library-info</code></td><td width="32%"><code>qXfer:libraries:read</code></td><td width="25%"><code>info sharedlibrary</code></td></tr>
  313. <tr><td width="28%"><code>memory-map</code></td><td width="32%"><code>qXfer:memory-map:read</code></td><td width="25%"><code>info mem</code></td></tr>
  314. <tr><td width="28%"><code>read-sdata-object</code></td><td width="32%"><code>qXfer:sdata:read</code></td><td width="25%"><code>print $_sdata</code></td></tr>
  315. <tr><td width="28%"><code>read-siginfo-object</code></td><td width="32%"><code>qXfer:siginfo:read</code></td><td width="25%"><code>print $_siginfo</code></td></tr>
  316. <tr><td width="28%"><code>write-siginfo-object</code></td><td width="32%"><code>qXfer:siginfo:write</code></td><td width="25%"><code>set $_siginfo</code></td></tr>
  317. <tr><td width="28%"><code>threads</code></td><td width="32%"><code>qXfer:threads:read</code></td><td width="25%"><code>info threads</code></td></tr>
  318. <tr><td width="28%"><code>get-thread-local-<br>storage-address</code></td><td width="32%"><code>qGetTLSAddr</code></td><td width="25%">Displaying <code>__thread</code> variables</td></tr>
  319. <tr><td width="28%"><code>get-thread-information-block-address</code></td><td width="32%"><code>qGetTIBAddr</code></td><td width="25%">Display MS-Windows Thread Information Block.</td></tr>
  320. <tr><td width="28%"><code>search-memory</code></td><td width="32%"><code>qSearch:memory</code></td><td width="25%"><code>find</code></td></tr>
  321. <tr><td width="28%"><code>supported-packets</code></td><td width="32%"><code>qSupported</code></td><td width="25%">Remote communications parameters</td></tr>
  322. <tr><td width="28%"><code>catch-syscalls</code></td><td width="32%"><code>QCatchSyscalls</code></td><td width="25%"><code>catch syscall</code></td></tr>
  323. <tr><td width="28%"><code>pass-signals</code></td><td width="32%"><code>QPassSignals</code></td><td width="25%"><code>handle <var>signal</var></code></td></tr>
  324. <tr><td width="28%"><code>program-signals</code></td><td width="32%"><code>QProgramSignals</code></td><td width="25%"><code>handle <var>signal</var></code></td></tr>
  325. <tr><td width="28%"><code>hostio-close-packet</code></td><td width="32%"><code>vFile:close</code></td><td width="25%"><code>remote get</code>, <code>remote put</code></td></tr>
  326. <tr><td width="28%"><code>hostio-open-packet</code></td><td width="32%"><code>vFile:open</code></td><td width="25%"><code>remote get</code>, <code>remote put</code></td></tr>
  327. <tr><td width="28%"><code>hostio-pread-packet</code></td><td width="32%"><code>vFile:pread</code></td><td width="25%"><code>remote get</code>, <code>remote put</code></td></tr>
  328. <tr><td width="28%"><code>hostio-pwrite-packet</code></td><td width="32%"><code>vFile:pwrite</code></td><td width="25%"><code>remote get</code>, <code>remote put</code></td></tr>
  329. <tr><td width="28%"><code>hostio-unlink-packet</code></td><td width="32%"><code>vFile:unlink</code></td><td width="25%"><code>remote delete</code></td></tr>
  330. <tr><td width="28%"><code>hostio-readlink-packet</code></td><td width="32%"><code>vFile:readlink</code></td><td width="25%">Host I/O</td></tr>
  331. <tr><td width="28%"><code>hostio-fstat-packet</code></td><td width="32%"><code>vFile:fstat</code></td><td width="25%">Host I/O</td></tr>
  332. <tr><td width="28%"><code>hostio-setfs-packet</code></td><td width="32%"><code>vFile:setfs</code></td><td width="25%">Host I/O</td></tr>
  333. <tr><td width="28%"><code>noack-packet</code></td><td width="32%"><code>QStartNoAckMode</code></td><td width="25%">Packet acknowledgment</td></tr>
  334. <tr><td width="28%"><code>osdata</code></td><td width="32%"><code>qXfer:osdata:read</code></td><td width="25%"><code>info os</code></td></tr>
  335. <tr><td width="28%"><code>query-attached</code></td><td width="32%"><code>qAttached</code></td><td width="25%">Querying remote process attach state.</td></tr>
  336. <tr><td width="28%"><code>trace-buffer-size</code></td><td width="32%"><code>QTBuffer:size</code></td><td width="25%"><code>set trace-buffer-size</code></td></tr>
  337. <tr><td width="28%"><code>trace-status</code></td><td width="32%"><code>qTStatus</code></td><td width="25%"><code>tstatus</code></td></tr>
  338. <tr><td width="28%"><code>traceframe-info</code></td><td width="32%"><code>qXfer:traceframe-info:read</code></td><td width="25%">Traceframe info</td></tr>
  339. <tr><td width="28%"><code>install-in-trace</code></td><td width="32%"><code>InstallInTrace</code></td><td width="25%">Install tracepoint in tracing</td></tr>
  340. <tr><td width="28%"><code>disable-randomization</code></td><td width="32%"><code>QDisableRandomization</code></td><td width="25%"><code>set disable-randomization</code></td></tr>
  341. <tr><td width="28%"><code>startup-with-shell</code></td><td width="32%"><code>QStartupWithShell</code></td><td width="25%"><code>set startup-with-shell</code></td></tr>
  342. <tr><td width="28%"><code>environment-hex-encoded</code></td><td width="32%"><code>QEnvironmentHexEncoded</code></td><td width="25%"><code>set environment</code></td></tr>
  343. <tr><td width="28%"><code>environment-unset</code></td><td width="32%"><code>QEnvironmentUnset</code></td><td width="25%"><code>unset environment</code></td></tr>
  344. <tr><td width="28%"><code>environment-reset</code></td><td width="32%"><code>QEnvironmentReset</code></td><td width="25%"><code>Reset the inferior environment (i.e., unset user-set variables)</code></td></tr>
  345. <tr><td width="28%"><code>set-working-dir</code></td><td width="32%"><code>QSetWorkingDir</code></td><td width="25%"><code>set cwd</code></td></tr>
  346. <tr><td width="28%"><code>conditional-breakpoints-packet</code></td><td width="32%"><code>Z0 and Z1</code></td><td width="25%"><code>Support for target-side breakpoint condition evaluation</code></td></tr>
  347. <tr><td width="28%"><code>multiprocess-extensions</code></td><td width="32%"><code>multiprocess extensions</code></td><td width="25%">Debug multiple processes and remote process PID awareness</td></tr>
  348. <tr><td width="28%"><code>swbreak-feature</code></td><td width="32%"><code>swbreak stop reason</code></td><td width="25%"><code>break</code></td></tr>
  349. <tr><td width="28%"><code>hwbreak-feature</code></td><td width="32%"><code>hwbreak stop reason</code></td><td width="25%"><code>hbreak</code></td></tr>
  350. <tr><td width="28%"><code>fork-event-feature</code></td><td width="32%"><code>fork stop reason</code></td><td width="25%"><code>fork</code></td></tr>
  351. <tr><td width="28%"><code>vfork-event-feature</code></td><td width="32%"><code>vfork stop reason</code></td><td width="25%"><code>vfork</code></td></tr>
  352. <tr><td width="28%"><code>exec-event-feature</code></td><td width="32%"><code>exec stop reason</code></td><td width="25%"><code>exec</code></td></tr>
  353. <tr><td width="28%"><code>thread-events</code></td><td width="32%"><code>QThreadEvents</code></td><td width="25%">Tracking thread lifetime.</td></tr>
  354. <tr><td width="28%"><code>no-resumed-stop-reply</code></td><td width="32%"><code>no resumed thread left stop reply</code></td><td width="25%">Tracking thread lifetime.</td></tr>
  355. </table>
  356. <hr>
  357. <div class="header">
  358. <p>
  359. Next: <a href="Remote-Stub.html#Remote-Stub" accesskey="n" rel="next">Remote Stub</a>, Previous: <a href="Server.html#Server" accesskey="p" rel="prev">Server</a>, Up: <a href="Remote-Debugging.html#Remote-Debugging" accesskey="u" rel="up">Remote Debugging</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Concept-Index.html#Concept-Index" title="Index" rel="index">Index</a>]</p>
  360. </div>
  361. </body>
  362. </html>