]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
gdb: make target_ops::follow_fork return void
authorSimon Marchi <simon.marchi@polymtl.ca>
Wed, 7 Apr 2021 20:57:29 +0000 (16:57 -0400)
committerSimon Marchi <simon.marchi@polymtl.ca>
Wed, 7 Apr 2021 20:57:29 +0000 (16:57 -0400)
I noticed that all implementations return false, so
target_ops::follow_fork doesn't really need to return a value.  Change
it to return void.

gdb/ChangeLog:

* target.h (struct target_ops) <follow_fork>: Return void.
(target_follow_fork): Likewise.
* target.c (default_follow_fork): Likewise.
(target_follow_fork): Likewise.
* infrun.c (follow_fork_inferior): Adjust.
* fbsd-nat.h (class fbsd_nat_target) <follow_fork>: Return void.
* fbsd-nat.c (fbsd_nat_target:::follow_fork): Likewise.
* linux-nat.h (class linux_nat_target) <follow_fork>: Likewise.
* linux-nat.c (linux_nat_target::follow_fork): Return void.
* obsd-nat.h (class obsd_nat_target) <follow_fork>: Return void.
* obsd-nat.c (obsd_nat_target::follow_fork): Likewise.
* remote.c (class remote_target) <follow_fork>: Likewise.
(remote_target::follow_fork): Likewise.
* target-delegates.c: Re-generate.

Change-Id: If908c2f68b29fa275be2b0b9deb41e4c6a1b7879

12 files changed:
gdb/ChangeLog
gdb/fbsd-nat.c
gdb/fbsd-nat.h
gdb/infrun.c
gdb/linux-nat.c
gdb/linux-nat.h
gdb/obsd-nat.c
gdb/obsd-nat.h
gdb/remote.c
gdb/target-delegates.c
gdb/target.c
gdb/target.h

index e817ba66b04ad5951613a8af776e9444405576e9..332688cd586ad099ebe0f04ea2b5f70c0c11174a 100644 (file)
@@ -1,3 +1,20 @@
+2021-04-07  Simon Marchi  <simon.marchi@polymtl.ca>
+
+       * target.h (struct target_ops) <follow_fork>: Return void.
+       (target_follow_fork): Likewise.
+       * target.c (default_follow_fork): Likewise.
+       (target_follow_fork): Likewise.
+       * infrun.c (follow_fork_inferior): Adjust.
+       * fbsd-nat.h (class fbsd_nat_target) <follow_fork>: Return void.
+       * fbsd-nat.c (fbsd_nat_target:::follow_fork): Likewise.
+       * linux-nat.h (class linux_nat_target) <follow_fork>: Likewise.
+       * linux-nat.c (linux_nat_target::follow_fork): Return void.
+       * obsd-nat.h (class obsd_nat_target) <follow_fork>: Return void.
+       * obsd-nat.c (obsd_nat_target::follow_fork): Likewise.
+       * remote.c (class remote_target) <follow_fork>: Likewise.
+       (remote_target::follow_fork): Likewise.
+       * target-delegates.c: Re-generate.
+
 2021-04-07  Weimin Pan  <weimin.pan@oracle.com>
 
        * ctfread.c (fetch_tid_type): New function, use throughout file.
index 22bdd7862921e75d24e36b08ffa73c33e7a263d6..0f0822f0d5550653ad161aaacf4903472be7f62e 100644 (file)
@@ -1417,7 +1417,7 @@ fbsd_nat_target::supports_stopped_by_sw_breakpoint ()
 /* Target hook for follow_fork.  On entry and at return inferior_ptid is
    the ptid of the followed inferior.  */
 
-bool
+void
 fbsd_nat_target::follow_fork (bool follow_child, bool detach_fork)
 {
   if (!follow_child && detach_fork)
@@ -1460,8 +1460,6 @@ fbsd_nat_target::follow_fork (bool follow_child, bool detach_fork)
        }
 #endif
     }
-
-  return false;
 }
 
 int
index edb05f883773919733494bbd325d9b48168b3cf1..772655d320e6a5cd4e14cfc4d73acf62b3c63423 100644 (file)
@@ -80,7 +80,7 @@ public:
 #endif
 
 #ifdef TDP_RFPPWAIT
-  bool follow_fork (bool, bool) override;
+  void follow_fork (bool, bool) override;
 
   int insert_fork_catchpoint (int) override;
   int remove_fork_catchpoint (int) override;
index 6176fa94fe36d27c069e46f8ee98d72c44ae2aae..2c31cf452b10752508561051fcd6490c554a0721 100644 (file)
@@ -426,7 +426,7 @@ follow_fork_inferior (bool follow_child, bool detach_fork)
 Can not resume the parent process over vfork in the foreground while\n\
 holding the child stopped.  Try \"set detach-on-fork\" or \
 \"set schedule-multiple\".\n"));
-      return 1;
+      return true;
     }
 
   if (!follow_child)
@@ -662,7 +662,9 @@ holding the child stopped.  Try \"set detach-on-fork\" or \
       switch_to_thread (child_thr);
     }
 
-  return target_follow_fork (follow_child, detach_fork);
+  target_follow_fork (follow_child, detach_fork);
+
+  return false;
 }
 
 /* Tell the target to follow the fork we're stopped at.  Returns true
index ccfd3c1320c6a41f703173c7140bc218057084fa..c45e335a762191e589d649b142bfe8555f4dc576 100644 (file)
@@ -446,7 +446,7 @@ typedef std::unique_ptr<struct lwp_info, lwp_deleter> lwp_info_up;
    ptid of the followed inferior.  At return, inferior_ptid will be
    unchanged.  */
 
-bool
+void
 linux_nat_target::follow_fork (bool follow_child, bool detach_fork)
 {
   if (!follow_child)
@@ -611,8 +611,6 @@ linux_nat_target::follow_fork (bool follow_child, bool detach_fork)
       /* Let the thread_db layer learn about this new process.  */
       check_for_thread_db ();
     }
-
-  return false;
 }
 
 \f
index ff4d753422dffd246b2828fa8b9bbf058ecf440a..5426a5c690012a15f2d8b46ccf23c7c636df5e0a 100644 (file)
@@ -133,7 +133,7 @@ public:
 
   void post_attach (int) override;
 
-  bool follow_fork (bool, bool) override;
+  void follow_fork (bool, bool) override;
 
   std::vector<static_tracepoint_marker>
     static_tracepoint_markers_by_strid (const char *id) override;
index bf1aa8266f69c7138bc7ecfa11591037c9b3e2b3..a8164ddbad157310df479f7be15fcd3649a517b2 100644 (file)
@@ -193,7 +193,7 @@ obsd_nat_target::post_startup_inferior (ptid_t pid)
 /* Target hook for follow_fork.  On entry and at return inferior_ptid is
    the ptid of the followed inferior.  */
 
-bool
+void
 obsd_nat_target::follow_fork (bool follow_child, bool detach_fork)
 {
   if (!follow_child)
@@ -207,8 +207,6 @@ obsd_nat_target::follow_fork (bool follow_child, bool detach_fork)
       if (ptrace (PT_DETACH, child_pid, (PTRACE_TYPE_ARG3)1, 0) == -1)
        perror_with_name (("ptrace"));
     }
-
-  return false;
 }
 
 int
index f66b8171b713d4a891d771ff72aebc176255675c..60b078fd0d30d618f3acf7ea34a8f44f3b3cd412 100644 (file)
@@ -30,7 +30,7 @@ class obsd_nat_target : public inf_ptrace_target
   ptid_t wait (ptid_t, struct target_waitstatus *, target_wait_flags) override;
 
 #ifdef PT_GET_PROCESS_STATE
-  bool follow_fork (bool, bool) override;
+  void follow_fork (bool, bool) override;
 
   int insert_fork_catchpoint (int) override;
 
index fd0ad9c74cbce89adc963cf850eb9969f150ebd7..7429e1a86b389dde87184550faff263be6c83121 100644 (file)
@@ -682,7 +682,7 @@ public:
 
   const struct btrace_config *btrace_conf (const struct btrace_target_info *) override;
   bool augmented_libraries_svr4_read () override;
-  bool follow_fork (bool, bool) override;
+  void follow_fork (bool, bool) override;
   void follow_exec (struct inferior *, const char *) override;
   int insert_fork_catchpoint (int) override;
   int remove_fork_catchpoint (int) override;
@@ -5895,7 +5895,7 @@ extended_remote_target::detach (inferior *inf, int from_tty)
    it is named remote_follow_fork in anticipation of using it for the
    remote target as well.  */
 
-bool
+void
 remote_target::follow_fork (bool follow_child, bool detach_fork)
 {
   struct remote_state *rs = get_remote_state ();
@@ -5922,8 +5922,6 @@ remote_target::follow_fork (bool follow_child, bool detach_fork)
          remote_detach_pid (child_pid);
        }
     }
-
-  return false;
 }
 
 /* Target follow-exec function for remote targets.  Save EXECD_PATHNAME
index cc8c64a4f1e678d9c23ebb98b5d24097c0f9a433..ef8c94cec8c6a996e0f9433d438d358ab15a1cf0 100644 (file)
@@ -56,7 +56,7 @@ struct dummy_target : public target_ops
   int remove_fork_catchpoint (int arg0) override;
   int insert_vfork_catchpoint (int arg0) override;
   int remove_vfork_catchpoint (int arg0) override;
-  bool follow_fork (bool arg0, bool arg1) override;
+  void follow_fork (bool arg0, bool arg1) override;
   int insert_exec_catchpoint (int arg0) override;
   int remove_exec_catchpoint (int arg0) override;
   void follow_exec (struct inferior *arg0, const char *arg1) override;
@@ -231,7 +231,7 @@ struct debug_target : public target_ops
   int remove_fork_catchpoint (int arg0) override;
   int insert_vfork_catchpoint (int arg0) override;
   int remove_vfork_catchpoint (int arg0) override;
-  bool follow_fork (bool arg0, bool arg1) override;
+  void follow_fork (bool arg0, bool arg1) override;
   int insert_exec_catchpoint (int arg0) override;
   int remove_exec_catchpoint (int arg0) override;
   void follow_exec (struct inferior *arg0, const char *arg1) override;
@@ -1518,32 +1518,28 @@ debug_target::remove_vfork_catchpoint (int arg0)
   return result;
 }
 
-bool
+void
 target_ops::follow_fork (bool arg0, bool arg1)
 {
-  return this->beneath ()->follow_fork (arg0, arg1);
+  this->beneath ()->follow_fork (arg0, arg1);
 }
 
-bool
+void
 dummy_target::follow_fork (bool arg0, bool arg1)
 {
-  return default_follow_fork (this, arg0, arg1);
+  default_follow_fork (this, arg0, arg1);
 }
 
-bool
+void
 debug_target::follow_fork (bool arg0, bool arg1)
 {
-  bool result;
   fprintf_unfiltered (gdb_stdlog, "-> %s->follow_fork (...)\n", this->beneath ()->shortname ());
-  result = this->beneath ()->follow_fork (arg0, arg1);
+  this->beneath ()->follow_fork (arg0, arg1);
   fprintf_unfiltered (gdb_stdlog, "<- %s->follow_fork (", this->beneath ()->shortname ());
   target_debug_print_bool (arg0);
   fputs_unfiltered (", ", gdb_stdlog);
   target_debug_print_bool (arg1);
-  fputs_unfiltered (") = ", gdb_stdlog);
-  target_debug_print_bool (result);
-  fputs_unfiltered ("\n", gdb_stdlog);
-  return result;
+  fputs_unfiltered (")\n", gdb_stdlog);
 }
 
 int
index 995e7ef1dac174405cb25005fdd63620025a8a22..1f0741471d829294ddbbca17c55ac564908b305e 100644 (file)
@@ -2699,7 +2699,7 @@ target_program_signals (gdb::array_view<const unsigned char> program_signals)
   current_inferior ()->top_target ()->program_signals (program_signals);
 }
 
-static bool
+static void
 default_follow_fork (struct target_ops *self, bool follow_child,
                     bool detach_fork)
 {
@@ -2708,10 +2708,9 @@ default_follow_fork (struct target_ops *self, bool follow_child,
                  _("could not find a target to follow fork"));
 }
 
-/* Look through the list of possible targets for a target that can
-   follow forks.  */
+/* See target.h.  */
 
-bool
+void
 target_follow_fork (bool follow_child, bool detach_fork)
 {
   target_ops *target = current_inferior ()->top_target ();
index adae49dc32958ef88e0cee3c205e2bcaac0068cd..48bf734279afe25df53bf9561b5dfb612c8c06c2 100644 (file)
@@ -636,7 +636,7 @@ struct target_ops
       TARGET_DEFAULT_RETURN (1);
     virtual int remove_vfork_catchpoint (int)
       TARGET_DEFAULT_RETURN (1);
-    virtual bool follow_fork (bool, bool)
+    virtual void follow_fork (bool, bool)
       TARGET_DEFAULT_FUNC (default_follow_fork);
     virtual int insert_exec_catchpoint (int)
       TARGET_DEFAULT_RETURN (1);
@@ -1710,11 +1710,9 @@ extern int target_remove_vfork_catchpoint (int pid);
    the next resume in order to perform any bookkeeping and fiddling
    necessary to continue debugging either the parent or child, as
    requested, and releasing the other.  Information about the fork
-   or vfork event is available via get_last_target_status ().
-   This function returns true if the inferior should not be resumed
-   (i.e. there is another event pending).  */
+   or vfork event is available via get_last_target_status ().  */
 
-bool target_follow_fork (bool follow_child, bool detach_fork);
+void target_follow_fork (bool follow_child, bool detach_fork);
 
 /* Handle the target-specific bookkeeping required when the inferior
    makes an exec call.  INF is the exec'd inferior.  */