public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
From: Kamil Rytarowski <n54@gmx.com>
To: gdb-patches@sourceware.org
Subject: [PATCH 05/10] Include netbsd_wait in the netbsd_process_target class
Date: Fri,  2 Oct 2020 04:17:59 +0200	[thread overview]
Message-ID: <20201002021804.2814-6-n54@gmx.com> (raw)
In-Reply-To: <20201002021804.2814-1-n54@gmx.com>

gdbserver/ChangeLog:

       * netbsd-low.cc (netbsd_wait): Turn into...
       (netbsd_process_target::netbsd_wait): ...this.
       * netbsd-low.h (netbsd_process_target::netbsd_wait): Add.
---
 gdbserver/ChangeLog     |  6 ++++++
 gdbserver/netbsd-low.cc | 12 ++++--------
 gdbserver/netbsd-low.h  |  6 ++++++
 3 files changed, 16 insertions(+), 8 deletions(-)

diff --git a/gdbserver/ChangeLog b/gdbserver/ChangeLog
index 17f78193be9..f978ac34fcd 100644
--- a/gdbserver/ChangeLog
+++ b/gdbserver/ChangeLog
@@ -1,3 +1,9 @@
+2020-10-01  Kamil Rytarowski  <n54@gmx.com>
+
+	* netbsd-low.cc (netbsd_wait): Turn into...
+	(netbsd_process_target::netbsd_wait): ...this.
+	* netbsd-low.h (netbsd_process_target::netbsd_wait): Add.
+
 2020-10-01  Kamil Rytarowski  <n54@gmx.com>

 	* netbsd-low.cc (gdb_catching_syscalls_p): Turn into...
diff --git a/gdbserver/netbsd-low.cc b/gdbserver/netbsd-low.cc
index bcae3a6f757..c834b5c6f78 100644
--- a/gdbserver/netbsd-low.cc
+++ b/gdbserver/netbsd-low.cc
@@ -241,15 +241,11 @@ netbsd_waitpid (ptid_t ptid, struct target_waitstatus *ourstatus,
 }


-/* Implement the wait target_ops method.
-
-   Wait for the child specified by PTID to do something.  Return the
-   process ID of the child, or MINUS_ONE_PTID in case of error; store
-   the status in *OURSTATUS.  */
+/* See netbsd-low.h.  */

-static ptid_t
-netbsd_wait (ptid_t ptid, struct target_waitstatus *ourstatus,
-	     target_wait_flags target_options)
+ptid_t
+netbsd_process_target::netbsd_wait (ptid_t ptid, struct target_waitstatus *ourstatus,
+				    target_wait_flags target_options)
 {
   pid_t pid = netbsd_waitpid (ptid, ourstatus, target_options);
   ptid_t wptid = ptid_t (pid);
diff --git a/gdbserver/netbsd-low.h b/gdbserver/netbsd-low.h
index 6797868dbe7..cb4a3ce44ed 100644
--- a/gdbserver/netbsd-low.h
+++ b/gdbserver/netbsd-low.h
@@ -138,6 +138,12 @@ class netbsd_process_target : public process_stratum_target
   /* Returns true if GDB is interested in any child syscalls.  */
   bool gdb_catching_syscalls_p (pid_t pid);

+  /* Wait for the child specified by PTID to do something.  Return the
+     process ID of the child, or MINUS_ONE_PTID in case of error; store
+     the status in *OURSTATUS.  */
+  ptid_t netbsd_wait (ptid_t ptid, struct target_waitstatus *ourstatus,
+		      target_wait_flags target_options);
+
 protected:
   /* The architecture-specific "low" methods are listed below.  */

--
2.28.0


  parent reply	other threads:[~2020-10-02  2:18 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-10-02  2:17 [PATCH 00/10] Refactor the NetBSD gdbserver support Kamil Rytarowski
2020-10-02  2:17 ` [PATCH 01/10] Merge netbsd_ptrace_fun into the netbsd_process_target class Kamil Rytarowski
2020-10-07  2:37   ` Simon Marchi
2020-10-07  4:36     ` Kamil Rytarowski
2020-10-07 11:19       ` Simon Marchi
2020-10-07 12:27         ` Kamil Rytarowski
2020-10-02  2:17 ` [PATCH 02/10] Include elf_64_file_p in " Kamil Rytarowski
2020-10-07  2:45   ` Simon Marchi
2020-10-02  2:17 ` [PATCH 03/10] Remove unneeded netbsd_add_process() Kamil Rytarowski
2020-10-07  2:48   ` Simon Marchi
2020-10-02  2:17 ` [PATCH 04/10] Include gdb_catching_syscalls_p in the netbsd_process_target class Kamil Rytarowski
2020-10-07  2:55   ` Simon Marchi
2020-10-02  2:17 ` Kamil Rytarowski [this message]
2020-10-07  2:58   ` [PATCH 05/10] Include netbsd_wait " Simon Marchi
2020-10-02  2:18 ` [PATCH 06/10] Include netbsd_waitpid " Kamil Rytarowski
2020-10-02  2:18 ` [PATCH 07/10] Include netbsd_store_waitstatus " Kamil Rytarowski
2020-10-02  2:18 ` [PATCH 08/10] Include netbsd_catch_this_syscall " Kamil Rytarowski
2020-10-07  3:00   ` Simon Marchi
2020-10-02  2:18 ` [PATCH 09/10] Include the functions of qxfer_libraries_svr4 in netbsd_process_target Kamil Rytarowski
2020-10-07  3:02   ` Simon Marchi
2020-10-02  2:18 ` [PATCH 10/10] Fix whitespace formatting Kamil Rytarowski
2020-10-07  3:02   ` Simon Marchi

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20201002021804.2814-6-n54@gmx.com \
    --to=n54@gmx.com \
    --cc=gdb-patches@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).