Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

181 rinda
7.2KB

  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>List (Debugging with GDB)</title>
  17. <meta name="description" content="List (Debugging with GDB)">
  18. <meta name="keywords" content="List (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="Source.html#Source" rel="up" title="Source">
  26. <link href="Specify-Location.html#Specify-Location" rel="next" title="Specify Location">
  27. <link href="Source.html#Source" rel="prev" title="Source">
  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="List"></a>
  58. <div class="header">
  59. <p>
  60. Next: <a href="Specify-Location.html#Specify-Location" accesskey="n" rel="next">Specify Location</a>, Up: <a href="Source.html#Source" accesskey="u" rel="up">Source</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="Printing-Source-Lines"></a>
  64. <h3 class="section">9.1 Printing Source Lines</h3>
  65. <a name="index-list"></a>
  66. <a name="index-l-_0028list_0029"></a>
  67. <p>To print lines from a source file, use the <code>list</code> command
  68. (abbreviated <code>l</code>). By default, ten lines are printed.
  69. There are several ways to specify what part of the file you want to
  70. print; see <a href="Specify-Location.html#Specify-Location">Specify Location</a>, for the full list.
  71. </p>
  72. <p>Here are the forms of the <code>list</code> command most commonly used:
  73. </p>
  74. <dl compact="compact">
  75. <dt><code>list <var>linenum</var></code></dt>
  76. <dd><p>Print lines centered around line number <var>linenum</var> in the
  77. current source file.
  78. </p>
  79. </dd>
  80. <dt><code>list <var>function</var></code></dt>
  81. <dd><p>Print lines centered around the beginning of function
  82. <var>function</var>.
  83. </p>
  84. </dd>
  85. <dt><code>list</code></dt>
  86. <dd><p>Print more lines. If the last lines printed were printed with a
  87. <code>list</code> command, this prints lines following the last lines
  88. printed; however, if the last line printed was a solitary line printed
  89. as part of displaying a stack frame (see <a href="Stack.html#Stack">Examining the
  90. Stack</a>), this prints lines centered around that line.
  91. </p>
  92. </dd>
  93. <dt><code>list -</code></dt>
  94. <dd><p>Print lines just before the lines last printed.
  95. </p></dd>
  96. </dl>
  97. <a name="index-list_002c-how-many-lines-to-display"></a>
  98. <p>By default, <small>GDB</small> prints ten source lines with any of these forms of
  99. the <code>list</code> command. You can change this using <code>set listsize</code>:
  100. </p>
  101. <dl compact="compact">
  102. <dd><a name="index-set-listsize"></a>
  103. </dd>
  104. <dt><code>set listsize <var>count</var></code></dt>
  105. <dt><code>set listsize unlimited</code></dt>
  106. <dd><p>Make the <code>list</code> command display <var>count</var> source lines (unless
  107. the <code>list</code> argument explicitly specifies some other number).
  108. Setting <var>count</var> to <code>unlimited</code> or 0 means there&rsquo;s no limit.
  109. </p>
  110. <a name="index-show-listsize"></a>
  111. </dd>
  112. <dt><code>show listsize</code></dt>
  113. <dd><p>Display the number of lines that <code>list</code> prints.
  114. </p></dd>
  115. </dl>
  116. <p>Repeating a <code>list</code> command with <tt class="key">RET</tt> discards the argument,
  117. so it is equivalent to typing just <code>list</code>. This is more useful
  118. than listing the same lines again. An exception is made for an
  119. argument of &lsquo;<samp>-</samp>&rsquo;; that argument is preserved in repetition so that
  120. each repetition moves up in the source file.
  121. </p>
  122. <p>In general, the <code>list</code> command expects you to supply zero, one or two
  123. <em>locations</em>. Locations specify source lines; there are several ways
  124. of writing them (see <a href="Specify-Location.html#Specify-Location">Specify Location</a>), but the effect is always
  125. to specify some source line.
  126. </p>
  127. <p>Here is a complete description of the possible arguments for <code>list</code>:
  128. </p>
  129. <dl compact="compact">
  130. <dt><code>list <var>location</var></code></dt>
  131. <dd><p>Print lines centered around the line specified by <var>location</var>.
  132. </p>
  133. </dd>
  134. <dt><code>list <var>first</var>,<var>last</var></code></dt>
  135. <dd><p>Print lines from <var>first</var> to <var>last</var>. Both arguments are
  136. locations. When a <code>list</code> command has two locations, and the
  137. source file of the second location is omitted, this refers to
  138. the same source file as the first location.
  139. </p>
  140. </dd>
  141. <dt><code>list ,<var>last</var></code></dt>
  142. <dd><p>Print lines ending with <var>last</var>.
  143. </p>
  144. </dd>
  145. <dt><code>list <var>first</var>,</code></dt>
  146. <dd><p>Print lines starting with <var>first</var>.
  147. </p>
  148. </dd>
  149. <dt><code>list +</code></dt>
  150. <dd><p>Print lines just after the lines last printed.
  151. </p>
  152. </dd>
  153. <dt><code>list -</code></dt>
  154. <dd><p>Print lines just before the lines last printed.
  155. </p>
  156. </dd>
  157. <dt><code>list</code></dt>
  158. <dd><p>As described in the preceding table.
  159. </p></dd>
  160. </dl>
  161. <hr>
  162. <div class="header">
  163. <p>
  164. Next: <a href="Specify-Location.html#Specify-Location" accesskey="n" rel="next">Specify Location</a>, Up: <a href="Source.html#Source" accesskey="u" rel="up">Source</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>
  165. </div>
  166. </body>
  167. </html>