diff options
author | Pedro Alves <palves@redhat.com> | 2012-03-01 21:07:31 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2012-03-01 21:07:31 +0000 |
commit | 5fbce5dfb1729f6183be7b96b9b2c42ab2e595f4 (patch) | |
tree | e91615a955f28537b38fdc82096096d78f214afb /gdb/tracepoint.c | |
parent | 49a8461db86081af4f76289427c673ff302dc1fd (diff) | |
download | fsf-binutils-gdb-5fbce5dfb1729f6183be7b96b9b2c42ab2e595f4.zip fsf-binutils-gdb-5fbce5dfb1729f6183be7b96b9b2c42ab2e595f4.tar.gz fsf-binutils-gdb-5fbce5dfb1729f6183be7b96b9b2c42ab2e595f4.tar.bz2 |
2012-03-01 Pedro Alves <palves@redhat.com>
* remote.c (encode_actions): Delete declaration.
* tracepoint.c (encode_actions): Make extern.
* tracepoint.h (encode_actions): Declare.
Diffstat (limited to 'gdb/tracepoint.c')
-rw-r--r-- | gdb/tracepoint.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/tracepoint.c b/gdb/tracepoint.c index 37e1f52..824d572 100644 --- a/gdb/tracepoint.c +++ b/gdb/tracepoint.c @@ -1577,7 +1577,8 @@ encode_actions_1 (struct command_line *action, } /* Render all actions into gdb protocol. */ -/*static*/ void + +void encode_actions (struct breakpoint *t, struct bp_location *tloc, char ***tdp_actions, char ***stepping_actions) { |