diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-06-03 20:54:43 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-06-03 20:54:43 +0000 |
commit | a9596cd98aa07c137ed362c7d92df64213b4fa04 (patch) | |
tree | 93d2aea2e0fa868da0f9b56626e5cfe8c2341869 /gdb/tracepoint.h | |
parent | 74eda9eb7acc3c2bd375826f92e8ca233d5f767a (diff) | |
download | binutils-cagney_writestrings-20030508-branch.zip binutils-cagney_writestrings-20030508-branch.tar.gz binutils-cagney_writestrings-20030508-branch.tar.bz2 |
Snap const char * mess.cagney_writestrings-20030508-branch
Diffstat (limited to 'gdb/tracepoint.h')
-rw-r--r-- | gdb/tracepoint.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/tracepoint.h b/gdb/tracepoint.h index c464ae1..b40a6c0 100644 --- a/gdb/tracepoint.h +++ b/gdb/tracepoint.h @@ -112,10 +112,10 @@ extern unsigned long trace_running_p; void (*create_tracepoint_hook) (struct tracepoint *); void (*delete_tracepoint_hook) (struct tracepoint *); void (*modify_tracepoint_hook) (struct tracepoint *); -void (*trace_find_hook) (char *arg, int from_tty); +void (*trace_find_hook) (char *const arg, int from_tty); void (*trace_start_stop_hook) (int start, int from_tty); -struct tracepoint *get_tracepoint_by_number (char **, int, int); +struct tracepoint *get_tracepoint_by_number (const char **, int, int); int get_traceframe_number (void); void free_actions (struct tracepoint *); enum actionline_type validate_actionline (char **, struct tracepoint *); |