You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

199 lines
9.5KB

  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>Inferiors In Python (Debugging with GDB)</title>
  17. <meta name="description" content="Inferiors In Python (Debugging with GDB)">
  18. <meta name="keywords" content="Inferiors In Python (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="Python-API.html#Python-API" rel="up" title="Python API">
  26. <link href="Events-In-Python.html#Events-In-Python" rel="next" title="Events In Python">
  27. <link href="Writing-an-Xmethod.html#Writing-an-Xmethod" rel="prev" title="Writing an Xmethod">
  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="Inferiors-In-Python"></a>
  58. <div class="header">
  59. <p>
  60. Next: <a href="Events-In-Python.html#Events-In-Python" accesskey="n" rel="next">Events In Python</a>, Previous: <a href="Writing-an-Xmethod.html#Writing-an-Xmethod" accesskey="p" rel="prev">Writing an Xmethod</a>, Up: <a href="Python-API.html#Python-API" accesskey="u" rel="up">Python API</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="Inferiors-In-Python-1"></a>
  64. <h4 class="subsubsection">23.2.2.16 Inferiors In Python</h4>
  65. <a name="index-inferiors-in-Python"></a>
  66. <a name="index-gdb_002eInferior"></a>
  67. <p>Programs which are being run under <small>GDB</small> are called inferiors
  68. (see <a href="Inferiors-Connections-and-Programs.html#Inferiors-Connections-and-Programs">Inferiors Connections and Programs</a>). Python scripts can access
  69. information about and manipulate inferiors controlled by <small>GDB</small>
  70. via objects of the <code>gdb.Inferior</code> class.
  71. </p>
  72. <p>The following inferior-related functions are available in the <code>gdb</code>
  73. module:
  74. </p>
  75. <dl>
  76. <dt><a name="index-gdb_002einferiors"></a>Function: <strong>gdb.inferiors</strong> <em>()</em></dt>
  77. <dd><p>Return a tuple containing all inferior objects.
  78. </p></dd></dl>
  79. <dl>
  80. <dt><a name="index-gdb_002eselected_005finferior"></a>Function: <strong>gdb.selected_inferior</strong> <em>()</em></dt>
  81. <dd><p>Return an object representing the current inferior.
  82. </p></dd></dl>
  83. <p>A <code>gdb.Inferior</code> object has the following attributes:
  84. </p>
  85. <dl>
  86. <dt><a name="index-Inferior_002enum"></a>Variable: <strong>Inferior.num</strong></dt>
  87. <dd><p>ID of inferior, as assigned by GDB.
  88. </p></dd></dl>
  89. <dl>
  90. <dt><a name="index-Inferior_002epid"></a>Variable: <strong>Inferior.pid</strong></dt>
  91. <dd><p>Process ID of the inferior, as assigned by the underlying operating
  92. system.
  93. </p></dd></dl>
  94. <dl>
  95. <dt><a name="index-Inferior_002ewas_005fattached"></a>Variable: <strong>Inferior.was_attached</strong></dt>
  96. <dd><p>Boolean signaling whether the inferior was created using &lsquo;attach&rsquo;, or
  97. started by <small>GDB</small> itself.
  98. </p></dd></dl>
  99. <dl>
  100. <dt><a name="index-Inferior_002eprogspace"></a>Variable: <strong>Inferior.progspace</strong></dt>
  101. <dd><p>The inferior&rsquo;s program space. See <a href="Progspaces-In-Python.html#Progspaces-In-Python">Progspaces In Python</a>.
  102. </p></dd></dl>
  103. <p>A <code>gdb.Inferior</code> object has the following methods:
  104. </p>
  105. <dl>
  106. <dt><a name="index-Inferior_002eis_005fvalid"></a>Function: <strong>Inferior.is_valid</strong> <em>()</em></dt>
  107. <dd><p>Returns <code>True</code> if the <code>gdb.Inferior</code> object is valid,
  108. <code>False</code> if not. A <code>gdb.Inferior</code> object will become invalid
  109. if the inferior no longer exists within <small>GDB</small>. All other
  110. <code>gdb.Inferior</code> methods will throw an exception if it is invalid
  111. at the time the method is called.
  112. </p></dd></dl>
  113. <dl>
  114. <dt><a name="index-Inferior_002ethreads"></a>Function: <strong>Inferior.threads</strong> <em>()</em></dt>
  115. <dd><p>This method returns a tuple holding all the threads which are valid
  116. when it is called. If there are no valid threads, the method will
  117. return an empty tuple.
  118. </p></dd></dl>
  119. <dl>
  120. <dt><a name="index-Inferior_002earchitecture"></a>Function: <strong>Inferior.architecture</strong> <em>()</em></dt>
  121. <dd><p>Return the <code>gdb.Architecture</code> (see <a href="Architectures-In-Python.html#Architectures-In-Python">Architectures In Python</a>)
  122. for this inferior. This represents the architecture of the inferior
  123. as a whole. Some platforms can have multiple architectures in a
  124. single address space, so this may not match the architecture of a
  125. particular frame (see <a href="Frames-In-Python.html#Frames-In-Python">Frames In Python</a>).
  126. </p></dd></dl>
  127. <a name="index-Inferior_002eread_005fmemory"></a>
  128. <dl>
  129. <dt><a name="index-Inferior_002eread_005fmemory-1"></a>Function: <strong>Inferior.read_memory</strong> <em>(address, length)</em></dt>
  130. <dd><p>Read <var>length</var> addressable memory units from the inferior, starting at
  131. <var>address</var>. Returns a buffer object, which behaves much like an array
  132. or a string. It can be modified and given to the
  133. <code>Inferior.write_memory</code> function. In Python 3, the return
  134. value is a <code>memoryview</code> object.
  135. </p></dd></dl>
  136. <a name="index-Inferior_002ewrite_005fmemory"></a>
  137. <dl>
  138. <dt><a name="index-Inferior_002ewrite_005fmemory-1"></a>Function: <strong>Inferior.write_memory</strong> <em>(address, buffer <span class="roman">[</span>, length<span class="roman">]</span>)</em></dt>
  139. <dd><p>Write the contents of <var>buffer</var> to the inferior, starting at
  140. <var>address</var>. The <var>buffer</var> parameter must be a Python object
  141. which supports the buffer protocol, i.e., a string, an array or the
  142. object returned from <code>Inferior.read_memory</code>. If given, <var>length</var>
  143. determines the number of addressable memory units from <var>buffer</var> to be
  144. written.
  145. </p></dd></dl>
  146. <a name="index-gdb_002esearch_005fmemory"></a>
  147. <dl>
  148. <dt><a name="index-Inferior_002esearch_005fmemory"></a>Function: <strong>Inferior.search_memory</strong> <em>(address, length, pattern)</em></dt>
  149. <dd><p>Search a region of the inferior memory starting at <var>address</var> with
  150. the given <var>length</var> using the search pattern supplied in
  151. <var>pattern</var>. The <var>pattern</var> parameter must be a Python object
  152. which supports the buffer protocol, i.e., a string, an array or the
  153. object returned from <code>gdb.read_memory</code>. Returns a Python <code>Long</code>
  154. containing the address where the pattern was found, or <code>None</code> if
  155. the pattern could not be found.
  156. </p></dd></dl>
  157. <a name="index-Inferior_002ethread_005ffrom_005fhandle"></a>
  158. <a name="index-Inferior_002ethread_005ffrom_005fthread_005fhandle"></a>
  159. <dl>
  160. <dt><a name="index-Inferior_002ethread_005ffrom_005fhandle-1"></a>Function: <strong>Inferior.thread_from_handle</strong> <em>(handle)</em></dt>
  161. <dd><p>Return the thread object corresponding to <var>handle</var>, a thread
  162. library specific data structure such as <code>pthread_t</code> for pthreads
  163. library implementations.
  164. </p>
  165. <p>The function <code>Inferior.thread_from_thread_handle</code> provides
  166. the same functionality, but use of <code>Inferior.thread_from_thread_handle</code>
  167. is deprecated.
  168. </p></dd></dl>
  169. <hr>
  170. <div class="header">
  171. <p>
  172. Next: <a href="Events-In-Python.html#Events-In-Python" accesskey="n" rel="next">Events In Python</a>, Previous: <a href="Writing-an-Xmethod.html#Writing-an-Xmethod" accesskey="p" rel="prev">Writing an Xmethod</a>, Up: <a href="Python-API.html#Python-API" accesskey="u" rel="up">Python API</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>
  173. </div>
  174. </body>
  175. </html>