aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Buettner <kevinb@redhat.com>2005-04-15 17:13:23 +0000
committerKevin Buettner <kevinb@redhat.com>2005-04-15 17:13:23 +0000
commitc9365369a6689336cb4af5ff39204610b0a58d6b (patch)
tree4466e31c2dc0e92fdadaf301a605873824cac6b7
parenta64548eabad092dcc0ddfba7ba993bd1630e00ab (diff)
downloadgdb-c9365369a6689336cb4af5ff39204610b0a58d6b.zip
gdb-c9365369a6689336cb4af5ff39204610b0a58d6b.tar.gz
gdb-c9365369a6689336cb4af5ff39204610b0a58d6b.tar.bz2
Eliminate calls to deprecated_show_value_hack(). This also eliminates the
printing of redundant information.
-rw-r--r--gdb/ChangeLog15
-rw-r--r--gdb/remote.c11
2 files changed, 15 insertions, 11 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 2783f52..b695e26 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,18 @@
+2005-04-15 Kevin Buettner <kevinb@redhat.com>
+
+ * remote.c (show_remote_protocol_vcont_packet_cmd )
+ (show_remote_protocol_qSymbol_packet_cmd)
+ (show_remote_protocol_P_packet_cmd)
+ (show_remote_protocol_Z_software_bp_packet_cmd)
+ (show_remote_protocol_Z_hardware_bp_packet_cmd)
+ (show_remote_protocol_Z_write_wp_packet_cmd)
+ (show_remote_protocol_Z_read_wp_packet_cmd)
+ (show_remote_protocol_Z_access_wp_packet_cmd)
+ (show_remote_protocol_binary_download_cmd)
+ (show_remote_protocol_qPart_auxv_packet_cmd)
+ (show_remote_protocol_p_packet_cmd ): Delete calls to
+ deprecated_show_value_hack().
+
2005-04-15 Corinna VInschen <vinschen@redhat.com>
* MAINTAINERS: Change sh64-elf state to non-broken.
diff --git a/gdb/remote.c b/gdb/remote.c
index 4c8817d..4aa8469 100644
--- a/gdb/remote.c
+++ b/gdb/remote.c
@@ -754,7 +754,6 @@ show_remote_protocol_vcont_packet_cmd (struct ui_file *file, int from_tty,
struct cmd_list_element *c,
const char *value)
{
- deprecated_show_value_hack (file, from_tty, c, value);
show_packet_config_cmd (&remote_protocol_vcont);
}
@@ -773,7 +772,6 @@ show_remote_protocol_qSymbol_packet_cmd (struct ui_file *file, int from_tty,
struct cmd_list_element *c,
const char *value)
{
- deprecated_show_value_hack (file, from_tty, c, value);
show_packet_config_cmd (&remote_protocol_qSymbol);
}
@@ -793,7 +791,6 @@ show_remote_protocol_P_packet_cmd (struct ui_file *file, int from_tty,
struct cmd_list_element *c,
const char *value)
{
- deprecated_show_value_hack (file, from_tty, c, value);
show_packet_config_cmd (&remote_protocol_P);
}
@@ -826,7 +823,6 @@ show_remote_protocol_Z_software_bp_packet_cmd (struct ui_file *file, int from_tt
struct cmd_list_element *c,
const char *value)
{
- deprecated_show_value_hack (file, from_tty, c, value);
show_packet_config_cmd (&remote_protocol_Z[Z_PACKET_SOFTWARE_BP]);
}
@@ -842,7 +838,6 @@ show_remote_protocol_Z_hardware_bp_packet_cmd (struct ui_file *file, int from_tt
struct cmd_list_element *c,
const char *value)
{
- deprecated_show_value_hack (file, from_tty, c, value);
show_packet_config_cmd (&remote_protocol_Z[Z_PACKET_HARDWARE_BP]);
}
@@ -858,7 +853,6 @@ show_remote_protocol_Z_write_wp_packet_cmd (struct ui_file *file, int from_tty,
struct cmd_list_element *c,
const char *value)
{
- deprecated_show_value_hack (file, from_tty, c, value);
show_packet_config_cmd (&remote_protocol_Z[Z_PACKET_WRITE_WP]);
}
@@ -874,7 +868,6 @@ show_remote_protocol_Z_read_wp_packet_cmd (struct ui_file *file, int from_tty,
struct cmd_list_element *c,
const char *value)
{
- deprecated_show_value_hack (file, from_tty, c, value);
show_packet_config_cmd (&remote_protocol_Z[Z_PACKET_READ_WP]);
}
@@ -890,7 +883,6 @@ show_remote_protocol_Z_access_wp_packet_cmd (struct ui_file *file, int from_tty,
struct cmd_list_element *c,
const char *value)
{
- deprecated_show_value_hack (file, from_tty, c, value);
show_packet_config_cmd (&remote_protocol_Z[Z_PACKET_ACCESS_WP]);
}
@@ -959,7 +951,6 @@ show_remote_protocol_binary_download_cmd (struct ui_file *file, int from_tty,
struct cmd_list_element *c,
const char *value)
{
- deprecated_show_value_hack (file, from_tty, c, value);
show_packet_config_cmd (&remote_protocol_binary_download);
}
@@ -978,7 +969,6 @@ show_remote_protocol_qPart_auxv_packet_cmd (struct ui_file *file, int from_tty,
struct cmd_list_element *c,
const char *value)
{
- deprecated_show_value_hack (file, from_tty, c, value);
show_packet_config_cmd (&remote_protocol_qPart_auxv);
}
@@ -996,7 +986,6 @@ show_remote_protocol_p_packet_cmd (struct ui_file *file, int from_tty,
struct cmd_list_element *c,
const char *value)
{
- deprecated_show_value_hack (file, from_tty, c, value);
show_packet_config_cmd (&remote_protocol_p);
}