diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-17 21:37:07 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:46:05 -0700 |
commit | 86ce266821fee1fd9af0f00862857b25f9caf4e6 (patch) | |
tree | 0c7f5810200a1ed61f7ae709c94f442b59292ad9 /gdb/linux-nat.c | |
parent | 4c6127599b8d882f3125e28bca938548367bf0f3 (diff) | |
download | gdb-86ce266821fee1fd9af0f00862857b25f9caf4e6.zip gdb-86ce266821fee1fd9af0f00862857b25f9caf4e6.tar.gz gdb-86ce266821fee1fd9af0f00862857b25f9caf4e6.tar.bz2 |
Add target_ops argument to to_supports_multi_process
2014-02-19 Tom Tromey <tromey@redhat.com>
* target.h (struct target_ops) <to_supports_multi_process>: Add
argument.
(target_supports_multi_process): Add argument.
* target.c (update_current_target): Update.
* remote.c (remote_supports_multi_process): Add 'self' argument.
* linux-nat.c (linux_nat_supports_multi_process): Add 'self'
argument.
* darwin-nat.c (darwin_supports_multi_process): Add 'self'
argument.
Diffstat (limited to 'gdb/linux-nat.c')
-rw-r--r-- | gdb/linux-nat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/linux-nat.c b/gdb/linux-nat.c index 5bb89c1..6befbac 100644 --- a/gdb/linux-nat.c +++ b/gdb/linux-nat.c @@ -4566,7 +4566,7 @@ linux_nat_supports_non_stop (struct target_ops *self) int linux_multi_process = 1; static int -linux_nat_supports_multi_process (void) +linux_nat_supports_multi_process (struct target_ops *self) { return linux_multi_process; } |