OSDN Git Service

2009-12-23 Dmitry Gorbachev <d.g.gorbachev@gmail.com>
authortromey <tromey>
Thu, 24 Dec 2009 08:21:29 +0000 (08:21 +0000)
committertromey <tromey>
Thu, 24 Dec 2009 08:21:29 +0000 (08:21 +0000)
PR gdb/11110
* tracepoint.h (deprecated_trace_find_hook)
(deprecated_trace_start_stop_hook): Declare extern.
* tracepoint.c (deprecated_trace_find_hook)
(deprecated_trace_start_stop_hook): Define.

gdb/ChangeLog
gdb/tracepoint.c
gdb/tracepoint.h

index 67e6301..a762481 100644 (file)
@@ -1,3 +1,11 @@
+2009-12-23  Dmitry Gorbachev  <d.g.gorbachev@gmail.com>
+
+       PR gdb/11110
+       * tracepoint.h (deprecated_trace_find_hook)
+       (deprecated_trace_start_stop_hook): Declare extern.
+       * tracepoint.c (deprecated_trace_find_hook)
+       (deprecated_trace_start_stop_hook): Define.
+
 2009-12-23  Jan Kratochvil  <jan.kratochvil@redhat.com>
 
        * breakpoint.c (bpstat_stop_status): Iterate using ALL_BREAKPOINTS and
index 0d439ef..e37d0be 100644 (file)
@@ -69,6 +69,10 @@ extern int remote_supports_cond_tracepoints (void);
    large.  (400 - 31)/2 == 184 */
 #define MAX_AGENT_EXPR_LEN     184
 
+/* A hook used to notify the UI of tracepoint operations.  */
+
+void (*deprecated_trace_find_hook) (char *arg, int from_tty);
+void (*deprecated_trace_start_stop_hook) (int start, int from_tty);
 
 extern void (*deprecated_readline_begin_hook) (char *, ...);
 extern char *(*deprecated_readline_hook) (char *);
index f43f736..8bdd1f7 100644 (file)
@@ -39,8 +39,8 @@ extern unsigned long trace_running_p;
 
 /* A hook used to notify the UI of tracepoint operations.  */
 
-void (*deprecated_trace_find_hook) (char *arg, int from_tty);
-void (*deprecated_trace_start_stop_hook) (int start, int from_tty);
+extern void (*deprecated_trace_find_hook) (char *arg, int from_tty);
+extern void (*deprecated_trace_start_stop_hook) (int start, int from_tty);
 
 int get_traceframe_number (void);
 void free_actions (struct breakpoint *);