This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] [gdb/Python] Eliminate find_inferior_object


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=d35da542a7a7f62b909cef636f69c9da928e7d9b

commit d35da542a7a7f62b909cef636f69c9da928e7d9b
Author: Pedro Alves <palves@redhat.com>
Date:   Mon Sep 17 19:46:40 2018 +0100

    [gdb/Python] Eliminate find_inferior_object
    
    Commit 00431a78b28f ("Use thread_info and inferior pointers more
    throughout") removed the declaration of find_inferior_object, but
    missed removing the definition.
    
    gdb/ChangeLog:
    2018-09-17  Pedro Alves  <palves@redhat.com>
    
    	* python/py-inferior.c (find_inferior_object): Delete.

Diff:
---
 gdb/ChangeLog            |  4 ++++
 gdb/python/py-inferior.c | 14 --------------
 2 files changed, 4 insertions(+), 14 deletions(-)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 419bffd..ba27302 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,7 @@
+2018-09-17  Pedro Alves  <palves@redhat.com>
+
+	* python/py-inferior.c (find_inferior_object): Delete.
+
 2018-09-17  Simon Marchi  <simon.marchi@ericsson.com>
 
 	* compile/compile-cplus-types.c
diff --git a/gdb/python/py-inferior.c b/gdb/python/py-inferior.c
index 145f53d..5bba676 100644
--- a/gdb/python/py-inferior.c
+++ b/gdb/python/py-inferior.c
@@ -292,20 +292,6 @@ python_inferior_deleted (struct inferior *inf)
     gdbpy_print_stack ();
 }
 
-/* Finds the Python Inferior object for the given PID.  Returns a
-   reference, or NULL if PID does not match any inferior object. */
-
-PyObject *
-find_inferior_object (int pid)
-{
-  struct inferior *inf = find_inferior_pid (pid);
-
-  if (inf)
-    return (PyObject *) inferior_to_inferior_object (inf);
-
-  return NULL;
-}
-
 gdbpy_ref<>
 thread_to_thread_object (thread_info *thr)
 {


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]