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ů.

110 lines
4.3KB

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <html>
  3. <!-- Copyright (C) 1994-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 no
  7. Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
  8. Texts. A copy of the license is included in the section entitled "GNU
  9. Free Documentation License". -->
  10. <!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
  11. <head>
  12. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  13. <title>Displays (GDB&rsquo;s Obsolete Annotations)</title>
  14. <meta name="description" content="Displays (GDB&rsquo;s Obsolete Annotations)">
  15. <meta name="keywords" content="Displays (GDB&rsquo;s Obsolete Annotations)">
  16. <meta name="resource-type" content="document">
  17. <meta name="distribution" content="global">
  18. <meta name="Generator" content="makeinfo">
  19. <link href="index.html#Top" rel="start" title="Top">
  20. <link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
  21. <link href="index.html#Top" rel="up" title="Top">
  22. <link href="Prompting.html#Prompting" rel="next" title="Prompting">
  23. <link href="Frame-Annotations.html#Frame-Annotations" rel="prev" title="Frame Annotations">
  24. <style type="text/css">
  25. <!--
  26. a.summary-letter {text-decoration: none}
  27. blockquote.indentedblock {margin-right: 0em}
  28. blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
  29. blockquote.smallquotation {font-size: smaller}
  30. div.display {margin-left: 3.2em}
  31. div.example {margin-left: 3.2em}
  32. div.lisp {margin-left: 3.2em}
  33. div.smalldisplay {margin-left: 3.2em}
  34. div.smallexample {margin-left: 3.2em}
  35. div.smalllisp {margin-left: 3.2em}
  36. kbd {font-style: oblique}
  37. pre.display {font-family: inherit}
  38. pre.format {font-family: inherit}
  39. pre.menu-comment {font-family: serif}
  40. pre.menu-preformatted {font-family: serif}
  41. pre.smalldisplay {font-family: inherit; font-size: smaller}
  42. pre.smallexample {font-size: smaller}
  43. pre.smallformat {font-family: inherit; font-size: smaller}
  44. pre.smalllisp {font-size: smaller}
  45. span.nolinebreak {white-space: nowrap}
  46. span.roman {font-family: initial; font-weight: normal}
  47. span.sansserif {font-family: sans-serif; font-weight: normal}
  48. ul.no-bullet {list-style: none}
  49. -->
  50. </style>
  51. </head>
  52. <body lang="en">
  53. <a name="Displays"></a>
  54. <div class="header">
  55. <p>
  56. Next: <a href="Prompting.html#Prompting" accesskey="n" rel="next">Prompting</a>, Previous: <a href="Frame-Annotations.html#Frame-Annotations" accesskey="p" rel="prev">Frame Annotations</a>, Up: <a href="index.html#Top" accesskey="u" rel="up">Top</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>]</p>
  57. </div>
  58. <hr>
  59. <a name="Displays-1"></a>
  60. <h2 class="chapter">7 Displays</h2>
  61. <p><em>Display Annotations have been removed. <small>GDB/MI</small> instead
  62. provides Variable Objects.</em>
  63. </p>
  64. <a name="index-display_002dbegin"></a>
  65. <a name="index-display_002dnumber_002dend"></a>
  66. <a name="index-display_002dformat"></a>
  67. <a name="index-display_002dexpression"></a>
  68. <a name="index-display_002dexpression_002dend"></a>
  69. <a name="index-display_002dvalue"></a>
  70. <a name="index-display_002dend"></a>
  71. <a name="index-annotations-for-display"></a>
  72. <p>When <small>GDB</small> is told to display something using the <code>display</code> command,
  73. the results of the display are annotated:
  74. </p>
  75. <div class="smallexample">
  76. <pre class="smallexample">^Z^Zdisplay-begin
  77. <var>number</var>
  78. ^Z^Zdisplay-number-end
  79. <var>number-separator</var>
  80. ^Z^Zdisplay-format
  81. <var>format</var>
  82. ^Z^Zdisplay-expression
  83. <var>expression</var>
  84. ^Z^Zdisplay-expression-end
  85. <var>expression-separator</var>
  86. ^Z^Zdisplay-value
  87. <var>value</var>
  88. ^Z^Zdisplay-end
  89. </pre></div>
  90. <p>where <var>number</var> is the number of the display, <var>number-separator</var>
  91. is intended to separate the number from what follows for the user,
  92. <var>format</var> includes information such as the size, format, or other
  93. information about how the value is being displayed, <var>expression</var> is
  94. the expression being displayed, <var>expression-separator</var> is intended
  95. to separate the expression from the text that follows for the user,
  96. and <var>value</var> is the actual value being displayed.
  97. </p>
  98. </body>
  99. </html>