diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2004-05-21 19:14:26 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2004-05-21 19:14:26 +0000 |
commit | ad92e640d08cb4b664151aa5f88fe0314f38eb05 (patch) | |
tree | d968efe26176bd37fc02301ad03af291fb95f3bc /gnu | |
parent | 8ff08258d3b23a4c74d8aeaabb549d911af3085f (diff) |
GDB 6.1 (excluding .info files)
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/binutils/gdb/cli/cli-cmds.c | 49 |
1 files changed, 23 insertions, 26 deletions
diff --git a/gnu/usr.bin/binutils/gdb/cli/cli-cmds.c b/gnu/usr.bin/binutils/gdb/cli/cli-cmds.c index fbe93c9020d..9378ac87064 100644 --- a/gnu/usr.bin/binutils/gdb/cli/cli-cmds.c +++ b/gnu/usr.bin/binutils/gdb/cli/cli-cmds.c @@ -600,7 +600,7 @@ edit_command (char *arg, int from_tty) if (sal.symtab == 0) /* FIXME-32x64--assumes sal.pc fits in long. */ error ("No source file for address %s.", - hex_string ((unsigned long) sal.pc)); + local_hex_string((unsigned long) sal.pc)); sym = find_pc_function (sal.pc); if (sym) { @@ -767,7 +767,7 @@ list_command (char *arg, int from_tty) if (sal.symtab == 0) /* FIXME-32x64--assumes sal.pc fits in long. */ error ("No source file for address %s.", - hex_string ((unsigned long) sal.pc)); + local_hex_string ((unsigned long) sal.pc)); sym = find_pc_function (sal.pc); if (sym) { @@ -858,7 +858,7 @@ disassemble_command (char *arg, int from_tty) /* FIXME: cagney/2004-02-07: This should be an observer. */ low = tui_get_low_disassembly_address (low, pc); #endif - low += DEPRECATED_FUNCTION_START_OFFSET; + low += FUNCTION_START_OFFSET; } else if (!(space_index = (char *) strchr (arg, ' '))) { @@ -873,7 +873,7 @@ disassemble_command (char *arg, int from_tty) /* FIXME: cagney/2004-02-07: This should be an observer. */ low = tui_get_low_disassembly_address (low, pc); #endif - low += DEPRECATED_FUNCTION_START_OFFSET; + low += FUNCTION_START_OFFSET; } else { @@ -1119,7 +1119,7 @@ when gdb is started.", &cmdlist); c = add_set_cmd ("verbose", class_support, var_boolean, (char *) &info_verbose, "Set ", &setlist), - deprecated_add_show_from_set (c, &showlist); + add_show_from_set (c, &showlist); set_cmd_sfunc (c, set_verbose); set_verbose (NULL, 0, c); @@ -1130,7 +1130,7 @@ when gdb is started.", &cmdlist); "Generic command for showing command history parameters.", &showhistlist, "show history ", 0, &showlist); - deprecated_add_show_from_set + add_show_from_set (add_set_cmd ("expansion", no_class, var_boolean, (char *) &history_expansion_p, "Set history expansion on command input.\n\ Without an argument, history expansion is enabled.", &sethistlist), @@ -1174,10 +1174,9 @@ is used, the same rules apply to its nested commands as to the first ones."); /* If target is open when baud changes, it doesn't take effect until the next open (I think, not sure). */ - deprecated_add_show_from_set - (add_set_cmd ("remotebaud", no_class, - var_zinteger, (char *) &baud_rate, - "Set baud rate for remote serial I/O.\n\ + add_show_from_set (add_set_cmd ("remotebaud", no_class, + var_zinteger, (char *) &baud_rate, + "Set baud rate for remote serial I/O.\n\ This value is used to set the speed of the serial port when debugging\n\ using remote targets.", &setlist), &showlist); @@ -1188,23 +1187,21 @@ using remote targets.", &setlist), When enabled, each packet sent or received with the remote target\n\ is displayed.", &setlist); deprecate_cmd (c, "set debug remote"); - deprecate_cmd (deprecated_add_show_from_set (c, &showlist), - "show debug remote"); + deprecate_cmd (add_show_from_set (c, &showlist), "show debug remote"); - deprecated_add_show_from_set - (add_set_cmd ("remote", no_class, var_zinteger, - (char *) &remote_debug, - "Set debugging of remote protocol.\n\ + add_show_from_set (add_set_cmd ("remote", no_class, var_zinteger, + (char *) &remote_debug, + "Set debugging of remote protocol.\n\ When enabled, each packet sent or received with the remote target\n\ is displayed.", &setdebuglist), &showdebuglist); - deprecated_add_show_from_set - (add_set_cmd ("remotetimeout", no_class, var_integer, (char *) &remote_timeout, - "Set timeout limit to wait for target to respond.\n\ + add_show_from_set ( + add_set_cmd ("remotetimeout", no_class, var_integer, (char *) &remote_timeout, + "Set timeout limit to wait for target to respond.\n\ This value is used to set the time limit for gdb to wait for a response\n\ from the target.", &setlist), - &showlist); + &showlist); add_prefix_cmd ("debug", no_class, set_debug, "Generic command for setting gdb debugging flags", @@ -1282,10 +1279,10 @@ Argument is the name of the user defined command.\n\ With no argument, show definitions of all user defined commands.", &showlist); add_com ("apropos", class_support, apropos_command, "Search for commands matching a REGEXP"); - deprecated_add_show_from_set - (add_set_cmd ("max-user-call-depth", no_class, var_integer, - (char *) &max_user_call_depth, - "Set the max call depth for user-defined commands.\n", - &setlist), - &showlist); + add_show_from_set ( + add_set_cmd ("max-user-call-depth", no_class, var_integer, + (char *) &max_user_call_depth, + "Set the max call depth for user-defined commands.\n", + &setlist), + &showlist); } |