]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blobdiff - gdb/progspace-and-thread.c
Automatic date update in version.in
[thirdparty/binutils-gdb.git] / gdb / progspace-and-thread.c
index a48faa0f960554aacb0b3708c61803e9251d575d..698661d43fbff2f6fe073d48179a636ca05f922d 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2009-2017 Free Software Foundation, Inc.
+/* Copyright (C) 2009-2020 Free Software Foundation, Inc.
 
    This file is part of GDB.
 
@@ -17,6 +17,7 @@
 
 #include "defs.h"
 #include "progspace-and-thread.h"
+#include "inferior.h"
 
 /* See progspace-and-thread.h  */
 
@@ -24,20 +25,20 @@ void
 switch_to_program_space_and_thread (program_space *pspace)
 {
   inferior *inf = find_inferior_for_program_space (pspace);
+  gdb_assert (inf != nullptr);
 
-  if (inf != NULL && inf->pid != 0)
+  if (inf->pid != 0)
     {
-      thread_info *tp = any_live_thread_of_process (inf->pid);
+      thread_info *tp = any_live_thread_of_inferior (inf);
 
       if (tp != NULL)
        {
-         switch_to_thread (tp->ptid);
+         switch_to_thread (tp);
          /* Switching thread switches pspace implicitly.  We're
             done.  */
          return;
        }
     }
 
-  switch_to_thread (null_ptid);
-  set_current_program_space (pspace);
+  switch_to_inferior_no_thread (inf);
 }