mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-25 04:49:54 +08:00
gdbserver: turn target op 'supports_multi_process' into a method
gdbserver/ChangeLog: 2020-02-20 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com> Turn process_stratum_target's supports_multi_process op into a method of process_target. * target.h (struct process_stratum_target): Remove the target op. (class process_target): Add the target op. * target.cc (process_target::supports_multi_process): Define. (target_supports_multi_process): Update. Update the derived classes and callers below. * linux-low.cc (linux_target_ops): Update. (linux_supports_multi_process): Turn into ... (linux_process_target::supports_multi_process): ... this. * linux-low.h (class linux_process_target): Update. * lynx-low.cc (lynx_target_ops): Update. * nto-low.cc (nto_target_ops): Update. * win32-low.cc (win32_target_ops): Update.
This commit is contained in:
@ -6338,10 +6338,10 @@ linux_process_target::start_non_stop (bool nonstop)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int
|
||||
linux_supports_multi_process (void)
|
||||
bool
|
||||
linux_process_target::supports_multi_process ()
|
||||
{
|
||||
return 1;
|
||||
return true;
|
||||
}
|
||||
|
||||
/* Check if fork events are supported. */
|
||||
@ -7429,7 +7429,6 @@ linux_get_hwcap2 (int wordsize)
|
||||
static linux_process_target the_linux_target;
|
||||
|
||||
static process_stratum_target linux_target_ops = {
|
||||
linux_supports_multi_process,
|
||||
linux_supports_fork_events,
|
||||
linux_supports_vfork_events,
|
||||
linux_supports_exec_events,
|
||||
|
Reference in New Issue
Block a user