aboutsummaryrefslogtreecommitdiff
path: root/gdb/NEWS
AgeCommit message (Collapse)AuthorFilesLines
1995-01-12 * README: Add note about SPARCworks cc release 3.0 and higher.Peter Schauer1-0/+8
Add procfs support for Alpha OSF/1-2.x. * config/alpha/nm-osf.h: Renamed from nm-alpha.h, generic OSF/1 native support. * config/alpha/alpha-osf1.mh (NAT_FILE): Changed accordingly. (MUNCH_DEFINE): Removed. * config/alpha/alpha-osf2.mh, config/alpha/nm-osf2.h: New files for procfs support. * configure.in (alpha-dec-osf*): Use alpha-osf2.mh for OSF/1 release 2.x and higher, else alpha-osf1.mh, as the procfs support in release 1.x is incomplete. * Makefile.in (ALLCONFIG): Add config/alpha/alpha-osf2.mh. * alpha-nat.c (supply_gregset, fill_gregset, supply_fpgregset, fill_fpgregset): New routines for procfs support. * inftarg.c (_initialize_inftarg): Don't add ptrace support if we have an optional procfs and /proc is accessible. * procfs.c: Include sys/fault.h and sys/syscall.h before including sys/procfs.h. (unconditionally_kill_inferior): If PROCFS_NEED_PIOCSSIG_FOR_KILL is defined, additionally perform a PIOCSSIG to really terminate the inferior. (create_procinfo): Always return a result. (create_procinfo, do_attach): Don't trace T_IFAULT faults if PROCFS_DONT_TRACE_IFAULT is defined. (procfs_init_inferior): Use START_INFERIOR_TRAPS_EXPECTED as argument to startup_inferior if it is defined. (proc_set_exec_trap): If PIOCSSPCACT is defined, use it instead of tracing exits from exec system calls. Needed for the user level loader under Alpha OSF/1. (do_detach): Clear any pending signal if we want to detach from a process without a signal. (set_proc_siginfo): If PROCFS_DONT_PIOCSSIG_CURSIG is defined, don't issue a PIOCSSIG if pr_cursig already contains the signal we intend to set. (info_proc_signals): If PROCFS_SIGPEND_OFFSET is defined, the pending signals are numbered from 1 instead of 0. (info_proc_mappings): Increase size of output format for addresses if BFD_HOST_64_BIT is defined. (procfs_stop): Renamed from child_stop. (_initialize_procfs): Don't add procfs support if we have an optional procfs and /proc is not accessible.
1994-12-30 * Allow up to 10 whitespace separated arguments to user definedJeff Law1-0/+13
commands. * top.c (struct user_args): Structure for holding arguments to user defined commands. (print_command_line): Delete unused "tmp_chain" variable. Clean up flow control by having cases exit in the same manner. Before executing a command or evaluating an expression, substitute the current $arg0..$arg9 values if the command/expression uses them. (arg_cleanup): New function. (setup_user_args, locate_arg, insert_args): Likewise. (execute_user_command): Allow arguments to user defined commands. * Allow if/while commands to be used within a breakpoint command list. * breakpoint.c (bpstat_do_actions): Call execute_control_command rather than execute_command (passes entire command structure rather than just the command line text). (breakpoint_1): Use "print_command_line" to print a breakpoint command line (including control structures). * gdbcmd.h (execute_control_command): Provide extern decl. (print_command_line): Likewise. * top.c (execute_control_command): No longer static. (print_command_line): New function to recursively print a command line, including control structures.
1994-11-25 * hpread.c: Include hp-symtab.h instead of hpux-symtab.h.Jeff Law1-0/+3
Various name changes to match those used by hp-symtab.h. No longer sanitize away hpread changes. Merge ChangeLog.hpread into ChangeLog and ChangeLog-93.
1994-11-20Update note for hpux9 dynamic executable support.Jeff Law1-4/+2
1994-11-08Small blurb on support for debugging dynamic executables on HPPAs runningJeff Law1-0/+6
hpux9.
1994-10-13* NEWS: Add item about if and while.Jim Kingdon1-0/+2
1994-08-14 * Makefile.in (VERSION): Bump to 4.13.1Fred Fish1-2/+71
* NEWS, README: Update to match gdb 4.13 release version.
1994-03-26 * command.c (do_setshow_command, case var_string): Never add aJim Kingdon1-0/+7
space to the end of the string. * NEWS: Document this change. * .gdbinit: Add a space to the "set prompt" command.
1994-02-04 * Makefile.in (VERSION): Bump to 4.12.1Fred Fish1-0/+13
* NEWS, README: Update to match 4.12 release.
1993-10-29 * NEWS: Note improvements in C++ support, preliminary threadFred Fish1-4/+28
implementation, and LynxOS native and target support for 386.
1993-10-28* NEWS: Add notes about Alpha and "set remotedebug" for UDI.Jim Kingdon1-3/+9
1993-08-24 * target.c, target.h: Add "set remotedebug" command.Jim Kingdon1-1/+6
* remote-bug.c, remote.c, remote-mips.c: Remove "set remotedebug" and "set m88ksnoop" options and use generic "set remotedebug" instead. * NEWS: Describe this change.
1993-07-30 * NEWS: Add note that DEC alpha support is host only, not native.Fred Fish1-0/+6
1993-07-15minor fixesJim Kingdon1-4/+4
1993-07-15* NEWS: Mention that remote.c now has a `load' operation.Jim Kingdon1-0/+5
1993-06-25 * main.c (filename_completer): Don't complete to files ending in ~.Jim Kingdon1-0/+6
* NEWS: Mention filename completion and "info line" enhancements. * main.c (symbol_completion_function): On "info t foo", return NULL, don't error(). * main.c (symbol_completion_function): Don't use readline word breaking. Use new calling convention for c->completer and complete_on_cmdlist. * command.h (struct command): Change arguments; now the text passed to completer does not have any word breaking done. New arg word. * symtab.{c,h} (make_symbol_completion_list): Do word breaking. Take word argument. * {main.c,gdbcmd.h} ({filename,noop}_completer): Take word argument. * command.{c,h} (complete_on_cmdlist): Take word argument. * command.c (lookup_cmd_1): Doc fix.
1993-06-16start tracking user visible changesK. Richard Pixley1-0/+10
1993-05-11 * README, NEWS: Update for gdb 4.9 release.Fred Fish1-53/+11
1993-05-07Add note about testsuite.Fred Fish1-1/+9
1993-05-06Mention support for IDT MIPS board.Ian Lance Taylor1-1/+1
1993-05-03Info on simulators.Steve Chamberlain1-3/+14
1993-03-03 * c-exp.y (parse_number): Change high_bit to unsigned.Fred Fish1-0/+6
* demangle.c: Change all references to cfront to ARM, since the actual algorithm is the one specified in the Annotated Reference Manual. This was confusing users into thinking that full cfront support was implemented. * dwarfread.c (CFRONT_PRODUCER): Remove, was never really used. * eval.c (evaluate_subexp): For STRUCTOP_PTR pass the arg type directly to lookup_struct_elt_type, which will do the dereferencing itself. * gdbtypes.c (lookup_struct_elt_type): Expand comments. Fix NULL dereferencing bug for unnamed structs, comment out questionable code.
1993-02-20Add reminders for next release.John Gilmore1-0/+62
1993-02-19Fix up NEWS file for G++ bug.John Gilmore1-1/+14
1993-02-19Update for gdb-4.8John Gilmore1-108/+79
1993-02-19for a baselineStu Grossman1-0/+158
1992-10-23More news...John Gilmore1-100/+129
1992-10-23Update NEWS, remove refs to UDI and Energize/Cadillac from ChangeLog.Stu Grossman1-14/+115
1992-10-22First cut at news for 4.7. Just an outline, and an indicator of where weStu Grossman1-0/+18
stopped in ChangeLog.
1992-07-16* WHATS.NEW renamed to NEWS.Stu Grossman1-0/+596