diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 6ccea751d5..75a56d9f2e 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2012-03-01 Pedro Alves + + * remote.c (encode_actions): Delete declaration. + * tracepoint.c (encode_actions): Make extern. + * tracepoint.h (encode_actions): Declare. + 2012-03-01 Pedro Alves * python/py-breakpoint.c: Include python.h. diff --git a/gdb/remote.c b/gdb/remote.c index 2719241ee7..baa3ddafa9 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -69,9 +69,6 @@ /* Temp hacks for tracepoint encoding migration. */ static char *target_buf; static long target_buf_size; -/*static*/ void -encode_actions (struct breakpoint *t, struct bp_location *tloc, - char ***tdp_actions, char ***stepping_actions); /* The size to align memory write packets, when practical. The protocol does not guarantee any alignment, and gdb will generate short diff --git a/gdb/tracepoint.c b/gdb/tracepoint.c index 37e1f52938..824d572838 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) { diff --git a/gdb/tracepoint.h b/gdb/tracepoint.h index 00c4d7cb18..4003c668c1 100644 --- a/gdb/tracepoint.h +++ b/gdb/tracepoint.h @@ -238,6 +238,9 @@ void free_actions (struct breakpoint *); extern char *decode_agent_options (char *exp); +extern void encode_actions (struct breakpoint *t, struct bp_location *tloc, + char ***tdp_actions, char ***stepping_actions); + extern void validate_actionline (char **, struct breakpoint *); extern void end_actions_pseudocommand (char *args, int from_tty);