Inferiors-In-Python.html 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  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 5.1, http://www.gnu.org/software/texinfo/ -->
  14. <head>
  15. <title>Debugging with GDB: Inferiors In Python</title>
  16. <meta name="description" content="Debugging with GDB: Inferiors In Python">
  17. <meta name="keywords" content="Debugging with GDB: Inferiors In Python">
  18. <meta name="resource-type" content="document">
  19. <meta name="distribution" content="global">
  20. <meta name="Generator" content="makeinfo">
  21. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  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="previous" title="Writing an Xmethod">
  28. <style type="text/css">
  29. <!--
  30. a.summary-letter {text-decoration: none}
  31. blockquote.smallquotation {font-size: smaller}
  32. div.display {margin-left: 3.2em}
  33. div.example {margin-left: 3.2em}
  34. div.indentedblock {margin-left: 3.2em}
  35. div.lisp {margin-left: 3.2em}
  36. div.smalldisplay {margin-left: 3.2em}
  37. div.smallexample {margin-left: 3.2em}
  38. div.smallindentedblock {margin-left: 3.2em; font-size: smaller}
  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.nocodebreak {white-space:nowrap}
  50. span.nolinebreak {white-space:nowrap}
  51. span.roman {font-family:serif; font-weight:normal}
  52. span.sansserif {font-family:sans-serif; font-weight:normal}
  53. ul.no-bullet {list-style: none}
  54. -->
  55. </style>
  56. </head>
  57. <body lang="en" bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
  58. <a name="Inferiors-In-Python"></a>
  59. <div class="header">
  60. <p>
  61. 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="previous">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>
  62. </div>
  63. <hr>
  64. <a name="Inferiors-In-Python-1"></a>
  65. <h4 class="subsubsection">23.2.2.16 Inferiors In Python</h4>
  66. <a name="index-inferiors-in-Python"></a>
  67. <a name="index-gdb_002eInferior"></a>
  68. <p>Programs which are being run under <small>GDB</small> are called inferiors
  69. (see <a href="Inferiors-Connections-and-Programs.html#Inferiors-Connections-and-Programs">Inferiors Connections and Programs</a>). Python scripts can access
  70. information about and manipulate inferiors controlled by <small>GDB</small>
  71. via objects of the <code>gdb.Inferior</code> class.
  72. </p>
  73. <p>The following inferior-related functions are available in the <code>gdb</code>
  74. module:
  75. </p>
  76. <dl>
  77. <dt><a name="index-gdb_002einferiors"></a>Function: <strong>gdb.inferiors</strong> <em>()</em></dt>
  78. <dd><p>Return a tuple containing all inferior objects.
  79. </p></dd></dl>
  80. <dl>
  81. <dt><a name="index-gdb_002eselected_005finferior"></a>Function: <strong>gdb.selected_inferior</strong> <em>()</em></dt>
  82. <dd><p>Return an object representing the current inferior.
  83. </p></dd></dl>
  84. <p>A <code>gdb.Inferior</code> object has the following attributes:
  85. </p>
  86. <dl>
  87. <dt><a name="index-Inferior_002enum"></a>Variable: <strong>Inferior.num</strong></dt>
  88. <dd><p>ID of inferior, as assigned by GDB.
  89. </p></dd></dl>
  90. <dl>
  91. <dt><a name="index-Inferior_002epid"></a>Variable: <strong>Inferior.pid</strong></dt>
  92. <dd><p>Process ID of the inferior, as assigned by the underlying operating
  93. system.
  94. </p></dd></dl>
  95. <dl>
  96. <dt><a name="index-Inferior_002ewas_005fattached"></a>Variable: <strong>Inferior.was_attached</strong></dt>
  97. <dd><p>Boolean signaling whether the inferior was created using &lsquo;attach&rsquo;, or
  98. started by <small>GDB</small> itself.
  99. </p></dd></dl>
  100. <dl>
  101. <dt><a name="index-Inferior_002eprogspace"></a>Variable: <strong>Inferior.progspace</strong></dt>
  102. <dd><p>The inferior&rsquo;s program space. See <a href="Progspaces-In-Python.html#Progspaces-In-Python">Progspaces In Python</a>.
  103. </p></dd></dl>
  104. <p>A <code>gdb.Inferior</code> object has the following methods:
  105. </p>
  106. <dl>
  107. <dt><a name="index-Inferior_002eis_005fvalid"></a>Function: <strong>Inferior.is_valid</strong> <em>()</em></dt>
  108. <dd><p>Returns <code>True</code> if the <code>gdb.Inferior</code> object is valid,
  109. <code>False</code> if not. A <code>gdb.Inferior</code> object will become invalid
  110. if the inferior no longer exists within <small>GDB</small>. All other
  111. <code>gdb.Inferior</code> methods will throw an exception if it is invalid
  112. at the time the method is called.
  113. </p></dd></dl>
  114. <dl>
  115. <dt><a name="index-Inferior_002ethreads"></a>Function: <strong>Inferior.threads</strong> <em>()</em></dt>
  116. <dd><p>This method returns a tuple holding all the threads which are valid
  117. when it is called. If there are no valid threads, the method will
  118. return an empty tuple.
  119. </p></dd></dl>
  120. <dl>
  121. <dt><a name="index-Inferior_002earchitecture"></a>Function: <strong>Inferior.architecture</strong> <em>()</em></dt>
  122. <dd><p>Return the <code>gdb.Architecture</code> (see <a href="Architectures-In-Python.html#Architectures-In-Python">Architectures In Python</a>)
  123. for this inferior. This represents the architecture of the inferior
  124. as a whole. Some platforms can have multiple architectures in a
  125. single address space, so this may not match the architecture of a
  126. particular frame (see <a href="Frames-In-Python.html#Frames-In-Python">Frames In Python</a>).
  127. </p></dd></dl>
  128. <a name="index-Inferior_002eread_005fmemory"></a>
  129. <dl>
  130. <dt><a name="index-Inferior_002eread_005fmemory-1"></a>Function: <strong>Inferior.read_memory</strong> <em>(address, length)</em></dt>
  131. <dd><p>Read <var>length</var> addressable memory units from the inferior, starting at
  132. <var>address</var>. Returns a buffer object, which behaves much like an array
  133. or a string. It can be modified and given to the
  134. <code>Inferior.write_memory</code> function. In Python 3, the return
  135. value is a <code>memoryview</code> object.
  136. </p></dd></dl>
  137. <a name="index-Inferior_002ewrite_005fmemory"></a>
  138. <dl>
  139. <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>
  140. <dd><p>Write the contents of <var>buffer</var> to the inferior, starting at
  141. <var>address</var>. The <var>buffer</var> parameter must be a Python object
  142. which supports the buffer protocol, i.e., a string, an array or the
  143. object returned from <code>Inferior.read_memory</code>. If given, <var>length</var>
  144. determines the number of addressable memory units from <var>buffer</var> to be
  145. written.
  146. </p></dd></dl>
  147. <a name="index-gdb_002esearch_005fmemory"></a>
  148. <dl>
  149. <dt><a name="index-Inferior_002esearch_005fmemory"></a>Function: <strong>Inferior.search_memory</strong> <em>(address, length, pattern)</em></dt>
  150. <dd><p>Search a region of the inferior memory starting at <var>address</var> with
  151. the given <var>length</var> using the search pattern supplied in
  152. <var>pattern</var>. The <var>pattern</var> parameter must be a Python object
  153. which supports the buffer protocol, i.e., a string, an array or the
  154. object returned from <code>gdb.read_memory</code>. Returns a Python <code>Long</code>
  155. containing the address where the pattern was found, or <code>None</code> if
  156. the pattern could not be found.
  157. </p></dd></dl>
  158. <a name="index-Inferior_002ethread_005ffrom_005fhandle"></a>
  159. <a name="index-Inferior_002ethread_005ffrom_005fthread_005fhandle"></a>
  160. <dl>
  161. <dt><a name="index-Inferior_002ethread_005ffrom_005fhandle-1"></a>Function: <strong>Inferior.thread_from_handle</strong> <em>(handle)</em></dt>
  162. <dd><p>Return the thread object corresponding to <var>handle</var>, a thread
  163. library specific data structure such as <code>pthread_t</code> for pthreads
  164. library implementations.
  165. </p>
  166. <p>The function <code>Inferior.thread_from_thread_handle</code> provides
  167. the same functionality, but use of <code>Inferior.thread_from_thread_handle</code>
  168. is deprecated.
  169. </p></dd></dl>
  170. <hr>
  171. <div class="header">
  172. <p>
  173. 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="previous">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>
  174. </div>
  175. </body>
  176. </html>