From aee91db3eb3f602b80be4c0e5275f39bcb40d334 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Sat, 18 Jul 2020 10:43:16 -0600 Subject: Remove "linux_multi_process" global 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 * linux-nat.c (linux_multi_process): Remove. (linux_nat_target::supports_multi_process): Return true. --- gdb/linux-nat.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'gdb/linux-nat.c') diff --git a/gdb/linux-nat.c b/gdb/linux-nat.c index 03d52ba..6a78735 100644 --- a/gdb/linux-nat.c +++ b/gdb/linux-nat.c @@ -4185,15 +4185,10 @@ linux_nat_target::always_non_stop_p () 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 -- cgit v1.1