The "linux_multi_process" is initialized but never modified. I
discussed this with Pedro on irc, and he said that, while it was
useful when developing this feature, it is now no longer needed. So,
this removes it.
gdb/ChangeLog
2020-07-18 Tom Tromey <tom@tromey.com>
* linux-nat.c (linux_multi_process): Remove.
(linux_nat_target::supports_multi_process): Return true.
+2020-07-18 Tom Tromey <tom@tromey.com>
+
+ * linux-nat.c (linux_multi_process): Remove.
+ (linux_nat_target::supports_multi_process): Return true.
+
2020-07-17 Andrew Burgess <andrew.burgess@embecosm.com>
* arch/riscv.c (riscv_tdesc_cache): Change map type.
return true;
}
-/* True if we want to support multi-process. To be removed when GDB
- supports multi-exec. */
-
-int linux_multi_process = 1;
-
bool
linux_nat_target::supports_multi_process ()
{
- return linux_multi_process;
+ return true;
}
bool