Split rank_one_type_parm_complex from rank_one_type
[deliverable/binutils-gdb.git] / gdb / obsd-nat.c
index a3058b00c36b926aa921ccd083ade00778e17d37..2c8b2d47817462fd05b6280e48fdb319a58d4ea0 100644 (file)
@@ -1,6 +1,6 @@
 /* Native-dependent code for OpenBSD.
 
-   Copyright (C) 2012-2018 Free Software Foundation, Inc.
+   Copyright (C) 2012-2019 Free Software Foundation, Inc.
 
    This file is part of GDB.
 
@@ -24,7 +24,7 @@
 
 #include <sys/types.h>
 #include <sys/ptrace.h>
-#include "gdb_wait.h"
+#include "common/gdb_wait.h"
 
 #include "inf-child.h"
 #include "obsd-nat.h"
 const char *
 obsd_nat_target::pid_to_str (ptid_t ptid)
 {
-  if (ptid_get_lwp (ptid) != 0)
+  if (ptid.lwp () != 0)
     {
       static char buf[64];
 
-      xsnprintf (buf, sizeof buf, "thread %ld", ptid_get_lwp (ptid));
+      xsnprintf (buf, sizeof buf, "thread %ld", ptid.lwp ());
       return buf;
     }
 
@@ -66,7 +66,7 @@ obsd_nat_target::update_thread_list ()
 
       if (!in_thread_list (ptid))
        {
-         if (ptid_get_lwp (inferior_ptid) == 0)
+         if (inferior_ptid.lwp () == 0)
            thread_change_ptid (inferior_ptid, ptid);
          else
            add_thread (ptid);
@@ -154,7 +154,7 @@ obsd_nat_target::wait (ptid_t ptid, struct target_waitstatus *ourstatus,
       ptid = ptid_t (pid, pe.pe_tid, 0);
       if (!in_thread_list (ptid))
        {
-         if (ptid_get_lwp (inferior_ptid) == 0)
+         if (inferior_ptid.lwp () == 0)
            thread_change_ptid (inferior_ptid, ptid);
          else
            add_thread (ptid);
This page took 0.052223 seconds and 4 git commands to generate.