diff options
author | Tom Tromey <tom@tromey.com> | 2020-07-18 10:43:16 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2020-07-18 10:43:16 -0600 |
commit | aee91db3eb3f602b80be4c0e5275f39bcb40d334 (patch) | |
tree | 2899b41b472a1704cf1b6a58582718c81e604e71 /gdb/linux-nat.c | |
parent | dea6fdedf9871b9b411a68983573f111f2b6de28 (diff) | |
download | gdb-aee91db3eb3f602b80be4c0e5275f39bcb40d334.zip gdb-aee91db3eb3f602b80be4c0e5275f39bcb40d334.tar.gz gdb-aee91db3eb3f602b80be4c0e5275f39bcb40d334.tar.bz2 |
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 <tom@tromey.com>
* linux-nat.c (linux_multi_process): Remove.
(linux_nat_target::supports_multi_process): Return true.
Diffstat (limited to 'gdb/linux-nat.c')
-rw-r--r-- | gdb/linux-nat.c | 7 |
1 files changed, 1 insertions, 6 deletions
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 |