diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-17 21:45:10 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:46:40 -0700 |
commit | 2c152180b36b20e14c4562a127d5d7fb8789d175 (patch) | |
tree | d5bddb8c0ada534615d627e616a366d745bc6dd1 | |
parent | a893e81f187e3ffd69a90bd8181571628f74794e (diff) | |
download | gdb-2c152180b36b20e14c4562a127d5d7fb8789d175.zip gdb-2c152180b36b20e14c4562a127d5d7fb8789d175.tar.gz gdb-2c152180b36b20e14c4562a127d5d7fb8789d175.tar.bz2 |
Add target_ops argument to to_use_agent
2014-02-19 Tom Tromey <tromey@redhat.com>
* target.h (struct target_ops) <to_use_agent>: Add argument.
(target_use_agent): Add argument.
* target.c (update_current_target): Update.
* remote.c (remote_use_agent): Add 'self' argument.
* inf-child.c (inf_child_use_agent): Add 'self' argument.
-rw-r--r-- | gdb/ChangeLog | 8 | ||||
-rw-r--r-- | gdb/inf-child.c | 2 | ||||
-rw-r--r-- | gdb/remote.c | 2 | ||||
-rw-r--r-- | gdb/target.c | 2 | ||||
-rw-r--r-- | gdb/target.h | 4 |
5 files changed, 13 insertions, 5 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 07b9bf4..2ae2e41 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,13 @@ 2014-02-19 Tom Tromey <tromey@redhat.com> + * target.h (struct target_ops) <to_use_agent>: Add argument. + (target_use_agent): Add argument. + * target.c (update_current_target): Update. + * remote.c (remote_use_agent): Add 'self' argument. + * inf-child.c (inf_child_use_agent): Add 'self' argument. + +2014-02-19 Tom Tromey <tromey@redhat.com> + * tracepoint.c (tfile_traceframe_info): Add 'self' argument. * target.h (struct target_ops) <to_traceframe_info>: Add argument. (target_traceframe_info): Add argument. diff --git a/gdb/inf-child.c b/gdb/inf-child.c index 054e279..8c5d9e6 100644 --- a/gdb/inf-child.c +++ b/gdb/inf-child.c @@ -372,7 +372,7 @@ inf_child_fileio_readlink (struct target_ops *self, } static int -inf_child_use_agent (int use) +inf_child_use_agent (struct target_ops *self, int use) { if (agent_loaded_p ()) { diff --git a/gdb/remote.c b/gdb/remote.c index f92a658..a9b5950 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -11192,7 +11192,7 @@ remote_set_trace_notes (struct target_ops *self, } static int -remote_use_agent (int use) +remote_use_agent (struct target_ops *self, int use) { if (remote_protocol_packets[PACKET_QAgent].support != PACKET_DISABLE) { diff --git a/gdb/target.c b/gdb/target.c index 05b2e4b..deb5425 100644 --- a/gdb/target.c +++ b/gdb/target.c @@ -941,7 +941,7 @@ update_current_target (void) (int (*) (struct target_ops *)) return_zero); de_fault (to_use_agent, - (int (*) (int)) + (int (*) (struct target_ops *, int)) tcomplain); de_fault (to_can_use_agent, (int (*) (void)) diff --git a/gdb/target.h b/gdb/target.h index 2c248a6..c63d932 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -892,7 +892,7 @@ struct target_ops /* Ask the target to use or not to use agent according to USE. Return 1 successful, 0 otherwise. */ - int (*to_use_agent) (int use); + int (*to_use_agent) (struct target_ops *, int use); /* Is the target able to use agent in current state? */ int (*to_can_use_agent) (void); @@ -1879,7 +1879,7 @@ extern char *target_fileio_read_stralloc (const char *filename); (*current_target.to_traceframe_info) (¤t_target) #define target_use_agent(use) \ - (*current_target.to_use_agent) (use) + (*current_target.to_use_agent) (¤t_target, use) #define target_can_use_agent() \ (*current_target.to_can_use_agent) () |