diff options
author | Yao Qi <yao@codesourcery.com> | 2012-08-16 07:26:16 +0000 |
---|---|---|
committer | Yao Qi <yao@codesourcery.com> | 2012-08-16 07:26:16 +0000 |
commit | 8acc40656214b647cd7f078e6d2c7a13321e2be5 (patch) | |
tree | 45bd0eb2656d715b6bd7b5d47d67dcb6a78d86d1 /gdb/tracepoint.c | |
parent | 8128fd8ef72ce13203f74615807146db637f3db5 (diff) | |
download | gdb-8acc40656214b647cd7f078e6d2c7a13321e2be5.zip gdb-8acc40656214b647cd7f078e6d2c7a13321e2be5.tar.gz gdb-8acc40656214b647cd7f078e6d2c7a13321e2be5.tar.bz2 |
gdb/
* tracepoint.c (trace_find_none_command): Remove.
(_initialize_tracepoint): Call add_alias_cmd for "tfind none".
Diffstat (limited to 'gdb/tracepoint.c')
-rw-r--r-- | gdb/tracepoint.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/gdb/tracepoint.c b/gdb/tracepoint.c index e729d6d..a59f7b7 100644 --- a/gdb/tracepoint.c +++ b/gdb/tracepoint.c @@ -2404,13 +2404,6 @@ trace_find_end_command (char *args, int from_tty) trace_find_command ("-1", from_tty); } -/* tfind none */ -static void -trace_find_none_command (char *args, int from_tty) -{ - trace_find_command ("-1", from_tty); -} - /* tfind start */ static void trace_find_start_command (char *args, int from_tty) @@ -5243,13 +5236,10 @@ Default is the current PC, or the PC of the current trace frame."), &tfindlist); add_cmd ("end", class_trace, trace_find_end_command, _("\ -Synonym for 'none'.\n\ De-select any trace frame and resume 'live' debugging."), &tfindlist); - add_cmd ("none", class_trace, trace_find_none_command, - _("De-select any trace frame and resume 'live' debugging."), - &tfindlist); + add_alias_cmd ("none", "end", class_trace, 0, &tfindlist); add_cmd ("start", class_trace, trace_find_start_command, _("Select the first trace frame in the trace buffer."), |