summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Document check-in proceduresNick Clifton2002-02-072-3/+15
|
* 2002-02-07 Klee Dienes <klee@apple.com>Klee Dienes2002-02-072-0/+10
| | | | | | | * fork-inferior.c (fork_inferior): Add '!' to the list of characters that need to be quoted when building a string for the shell. Quote '!' specifically with a backslash, since CSH chokes when trying to evaluate "str!str".
* 2002-02-06 Martin M. Hunt <hunt@redhat.com>Martin Hunt2002-02-079-842/+579
| | | | | | | | | * generic/gdbtk.c, generic/gdbtk-bp.c, generic/gdbtk-cmds.c, generic/gdbtk-hooks.c, generic/gdbtk-register.c, generic/gdbtk-stack.c, generic/gdbtk-varobj.c, generic/gdbtk-wrapper.c: Cleanup. Fix indentation. Fix function declarations. Remove unused variables. Add 2002 copyrights.
* *** empty log message ***gdbadmin2002-02-071-1/+1
|
* daily updateAlan Modra2002-02-061-1/+1
|
* 2002-02-06 H.J. Lu (hjl@gnu.org)H.J. Lu2002-02-062-1/+19
| | | | | * elf32-mips.c (_bfd_mips_elf_merge_private_bfd_data): Update the mach and ISA fields if necessary.
* Only provide a typedef for bool if it is not defined.Nick Clifton2002-02-062-1/+8
|
* * library/images/cygnus.gif: Remove.Keith Seitz2002-02-063-0/+5
| | | | * library/images2/cygnus.gif: Remove.
* 2002-02-04 Michael Snyder <msnyder@redhat.com>Michael Snyder2002-02-064-41/+141
| | | | | | | | | | | | | | | | | | | | | | | | | | | * breakpoint.h (enum bptype): Add new overlay event bp type. (enable_overlay_breakpoints, disable_overlay_breakpoints): Export. * breakpoint.c (create_internal_breakpoint): New function. (internal_breakpoint_number): Moved into create_internal_breakpoint. (create_longjmp_breakpoint): Use create_internal_breakpoint. (create_thread_event_breakpoint): Ditto. (create_solib_event_breakpoint): Ditto. (create_overlay_event_breakpoint): New function. (enable_overlay_breakpoints, disable_overlay_breakpoints): New funcs. (update_breakpoints_after_exec): Delete and re-initialize overlay event breakpoints after an exec. Add FIXME comment about longjmp breakpoint. (print_it_typical): Ignore overlay event breakpoints. (print_one_breakpoint): Ditto. (mention): Ditto. (bpstat_what): Do not stop for overlay event breakpoints. (delete_breakpoint): Don't delete overlay event breakpoints. (breakpoint_re_set_one): Delete the overlay event breakpoint. (breakpoint_re_set): Re-create overlay event breakpoint. * symfile.c (overlay_auto_command): Enable overlay breakpoints. (overlay_manual_command): Disable overlay breakpoints. (overlay_off_command): Disable overlay breakpoints.
* 2002-02-06 Michael Snyder <msnyder@redhat.com>Michael Snyder2002-02-062-0/+15
| | | | | | * gdb.texinfo (overlays): Mention new magic symbol '_ovly_debug_event', which allows GDB to keep better track of overlays.
* Select the highest known ARM architecture when an F_ARM_5 flag is detected,Nick Clifton2002-02-062-3/+15
| | | | since we cannot be sure exactly which architecture this represents.
* * arm-tdep.c: Include elf-bfd.h and coff/internal.h.Richard Earnshaw2002-02-063-50/+86
| | | | | | | | | | | | | | | (MSYMBOL_SET_SPECIAL, MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Move defines to here from config/tm-arm.h. (coff_sym_is_thumb): Make static. (arm_elf_make_msymbol_special): New function. (arm_coff_make_msymbol_special): New function. * config/arm/tm-arm.h (MSYMBOL_SET_SPECIAL): Delete definition. (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Likewise. (coff_sym_is_thumb): Delete declaration. (arm_elf_make_msymbol_special): Declare. (arm_coff_make_msymbol_special): Declare. (ELF_MAKE_MSYMBOL_SPECIAL): Call arm_elf_make_msymbol_special. (COFF_MAKE_MSYMBOL_SPECIAL): Call arm_coff_make_msymbol_special.
* * arm-tdep.c (arm_software_single_step): ANSIfy function declaration.Richard Earnshaw2002-02-062-3/+19
|
* * gdbarch.sh (PRINT_FLOAT_INFO): Add rule.Richard Earnshaw2002-02-069-68/+135
| | | | | | | | | | | | | * gdbarch.c gdbarch.h: Regenerate. * arch-utils.c (default_print_float_info): New function. * arch-utils.h (default_print_float_info): Prototype it. * infcmd.c (float_info): Call PRINT_FLOAT_INFO. * doc/gdbint.texinfo (FLOAT_INFO): Mark as deprecated. (PRINT_FLOAT_INFO): Document it. * arm-tdep.c (arm_print_float_info): Renamed from arm_float_info. * config/arm/tm-arm.h (FLOAT_INFO): Delete. (PRINT_FLOAT_INFO): Define.
* Remove some extraneous conflict markers.Richard Earnshaw2002-02-061-2/+0
|
* 2002-02-06 Pierre Muller <muller@ics.u-strasbg.fr>Pierre Muller2002-02-062-2/+8
| | | | | * win32-nat.c (_initialize_check_for_gdb_ini): Add typecast to sprintf argument to suppress a warning.
* 2002-02-05 Pierre Muller <muller@ics.u-strasbg.fr>Pierre Muller2002-02-062-33/+119
| | | | | | | | | | | | | | | win32-nat.c (last_sig): Changed type of variable to target_signal, to allow easier handling of pass state. (DEBUG_EXCEPTION_SIMPLE): New macro, used in handle_exception, that gives exception name and address. (handle_exception): Use DEBUG_EXCEPTION_SIMPLE macro and set last_sig value to ourstatus->value.sig. Some missing exceptions added. (child_continue): Correctly report continue_status. (get_child_debug_event,do_initial_child_stuff): Set last_sig to TARGET_SIGNAL_0 (new default value). (child_resume): consider sig argument passed to decide if the exception should be passed to debuggee or not.
* 2002-02-05 Elena Zannoni <ezannoni@redhat.com>Elena Zannoni2002-02-062-2/+7
| | | | | * generic/gdbtk-cmds.c (gdbtk_load_asm, gdbtk_print_asm): Use TARGET_PRINT_INSN instead of tm_print_insn.
* 2002-02-05 Michael Snyder <msnyder@redhat.com>Michael Snyder2002-02-062-2/+11
| | | | | | | * regcache.c (fetch_register): Call target_fetch_register only if we don't call FETCH_PSEUDO_REGISTER. (store_register): Call target_store_register only if we don't call STORE_PSEUDO_REGISTER.
* 2002-02-04 Elena Zannoni <ezannoni@redhat.com>Elena Zannoni2002-02-068-57/+198
| | | | | | | | | | | | | | | * gdbarch.sh: Add definitions for COFF_MAKE_MSYMBOL_SPECIAL and ELF_MAKE_MSYMBOL_SPECIAL. * gdbarch.c, gdbarch.h: Regenerate. * arch-utils.c (default_elf_make_msymbol_special, default_coff_make_msymbol_special): New functions. * arch-utils.h (default_elf_make_msymbol_special, default_coff_make_msymbol_special): Export. * elfread.c (elf_symtab_read): Compile use of ELF_MAKE_MSYMBOL_SPECIAL unconditionally because it is now multiarched. * coffread.c (coff_symtab_read): Ditto, for COFF_MAKE_MSYMBOL_SPECIAL.
* *** empty log message ***gdbadmin2002-02-061-1/+1
|
* * mi-regs.exp: Various cleanups for SPARC-only tests.Jim Blandy2002-02-053-9/+19
| | | | | | | | | | | | | (test_breakpoints_creation_and_listing): Format of breakpoint table has changed. (sparc_register_tests): Expand floating-point number regexp to recognize NaN values, too. Replace ineffectual single backslash before a hyphen with a double backslash. Don't check the exact numbers of the registers which have changed, since there's no way to know which registers changed, exactly; just check that the result is well-formed. * mi0-regs.exp: (sparc_register_tests): Same as for sparc_register_tests in mi-regs.exp.
* * mi-var-child.exp ("get children of struct_declarations", "getJim Blandy2002-02-053-6/+18
| | | | | | | children of struct_declarations.s2.u2.u1s2", "get children of weird"): Tolerate argument types when they appear in function types. (Dwarf 2 includes prototype info; STABS does not.) * mi0-var-child.exp: Same.
* * solib-svr4.c (svr4_truncate_ptr): New function.Jim Blandy2002-02-052-2/+36
| | | | | | (svr4_relocate_section_addresses): Do the address arithmetic with the appropriate truncation for target addresses, even when CORE_ADDR is larger than a target address.
* daily updateAlan Modra2002-02-051-1/+1
|
* 2002-02-05 Daniel Jacobowitz <drow@mvista.com>Daniel Jacobowitz2002-02-052-1/+6
| | | | | * gdbserver/linux-low.c (mywait): Cast second argument of waitpid to (int *).
* 2002-02-05 Daniel Jacobowitz <drow@mvista.com>Daniel Jacobowitz2002-02-052-1/+5
| | | | | * gdbserver/linux-low.c (kill_inferior): Remove commented out code.
* 2002-02-05 Daniel Jacobowitz <drow@mvista.com>Daniel Jacobowitz2002-02-052-0/+26
| | | | * c-valprint.c (c_val_print): Handle TYPE_CODE_COMPLEX.
* * opcodes disassembler extensionFrank Ch. Eigler2002-02-054-1/+16
| | | | | | | | | | | | | [includes] 2002-02-04 Frank Ch. Eigler <fche@redhat.com> * dis-asm.h (disassemble_info): New field `insn_sets'. (INIT_DISASSEMBLE_INFO): Clear it. [opcodes] 2002-02-04 Frank Ch. Eigler <fche@redhat.com> * cgen-dis.in (print_insn_@arch@): Support disassemble_info.insn_sets.
* * mi-cmd-stack.c (list_args_or_locals): Move declaration ofJim Blandy2002-02-052-1/+9
| | | | | | print_me inside the loop body, so it gets re-initialized every iteration. The cases for the different symbol kinds leave print_me unchanged if they don't want the symbol printed.
* 2002-02-05 Daniel Jacobowitz <drow@mvista.com>Daniel Jacobowitz2002-02-052-2/+4
| | | | * gdbserver/linux-low.c: Remove unused include files.
* 2002-02-05 Daniel Jacobowitz <drow@mvista.com>Daniel Jacobowitz2002-02-052-7/+14
| | | | | | * gdbserver/linux-low.c: Define PTRACE_ARG3_TYPE. (read_inferior_memory): Use it. (write_inferior_memory): Likewise.
* 2002-02-05 Daniel Jacobowitz <drow@mvista.com>Daniel Jacobowitz2002-02-052-1/+7
| | | | | * gdbserver/linux-low.c (create_inferior): Call strerror instead of grubbing through sys_errlist.
* 2002-02-05 Daniel Jacobowitz <drow@mvista.com>Daniel Jacobowitz2002-02-052-0/+781
| | | | * gdbserver/linux-low.c: New file, copied exactly from low-linux.c.
* merge from gccDJ Delorie2002-02-055-31/+28
|
* Modify previous patch so that it is only triggered for COFF format executables.Nick Clifton2002-02-052-11/+20
|
* Updated Turkish translationsNick Clifton2002-02-052-1020/+754
|
* 2002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>Pierre Muller2002-02-052-0/+9
| | | | win32-nat.c (handle_exception): Handle Ctrl-Break exception.
* * config.guess: Import from master sources, rev 1.229.Ben Elliston2002-02-053-7/+30
| | | | * config.sub: Import from master sources, rev 1.240.
* * cli/cli-decode.c (do_cfunc, set_cmd_cfunc): New functions.Andrew Cagney2002-02-0527-66/+198
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (do_sfunc, set_cmd_sfunc): New functions. * command.h (struct cmd_list_element): Add field func. * cli/cli-decode.h (struct cmd_list_element): Ditto. * command.h (set_cmd_sfunc, set_cmd_cfunc): Declare. * cli/cli-decode.h: Ditto. * cli/cli-decode.c (help_cmd): Test for func not cfunc/sfunc. (help_all, help_cmd_list): Ditto. (find_cmd, complete_on_cmdlist): Ditto. * top.c (execute_command): Ditto. * cli/cli-setshow.c (do_setshow_command): Call func instead of function.sfunc. * infcmd.c (notice_args_read): Fix function signature. * cli/cli-cmds.c (init_cli_cmds): Use set_cmd_sfunc. * cli/cli-decode.c (add_set_cmd): Ditto. * utils.c (initialize_utils): Ditto. * maint.c (_initialize_maint_cmds): Ditto. * infrun.c (_initialize_infrun): Ditto. * demangle.c (_initialize_demangler): Ditto. * remote.c (add_packet_config_cmd): Ditto. * mips-tdep.c (_initialize_mips_tdep): Ditto. * cris-tdep.c (_initialize_cris_tdep): Ditto. * proc-api.c (_initialize_proc_api): Ditto. * kod.c (_initialize_kod): Ditto. * valprint.c (_initialize_valprint): Ditto. * top.c (init_main): Ditto. * infcmd.c (_initialize_infcmd): Ditto. * corefile.c (_initialize_core): Ditto. * arm-tdep.c (_initialize_arm_tdep): Ditto. * arch-utils.c (initialize_current_architecture): Ditto. (_initialize_gdbarch_utils): Ditto. * alpha-tdep.c (_initialize_alpha_tdep): Ditto. * cli/cli-decode.c (add_cmd): Use set_cmd_cfunc. * wince.c (_initialize_inftarg): Ditto. * symfile.c (_initialize_symfile): Ditto. * mips-tdep.c (_initialize_mips_tdep): Ditto. * language.c (_initialize_language): Ditto. * arc-tdep.c (_initialize_arc_tdep): Ditto.
* 2002-02-04 Michael Snyder <msnyder@redhat.com>Michael Snyder2002-02-052-5/+12
| | | | | * gdb.base/ovlymgr.c (ovly_copy): Generalize for targets other than d10v and m32r.
* * archures (bfd_mach_ppc64): Define.Alan Modra2002-02-054-22/+49
| | | | | | | | | | | (bfd_powerpc_arch): Rename to bfd_powerpc_archs. (bfd_powerpc_arch): Define. * bfd-in2.h: Regenerate. * cpu-powerpc.c (arch_info_struct): Rename to bfd_powerpc_archs. (bfd_powerpc_arch): Move to tail of bfd_powerpc_archs. (bfd_powerpc_archs): Add default powerpc64 arch. * gas/ppc/test1elf64.d: Tweak arch name.
* 2002-01-14 Michael Snyder <msnyder@redhat.com>Michael Snyder2002-02-051-2/+2
| | | | * gdb.base/gcore.exp: Remove extra debugging output.
* 2002-02-04 Jeff Johnston <jjohnstn@redhat.com>Jeff Johnston2002-02-052-13/+31
| | | | | * COPYING.NEWLIB: Remove advertising clause from Berkeley and Red Hat licenses.
* * elf64-ppc.c (ppc64_elf_size_dynamic_sections): Check for relocsAlan Modra2002-02-056-10/+41
| | | | | | | | | against section syms in readonly sections. Don't do the global sym check if we find one. * elf64-s390.c (elf_s390_size_dynamic_sections): Likewise. * elf32-hppa.c (elf32_hppa_size_dynamic_sections): Likewise. * elf32-s390.c (elf_s390_size_dynamic_sections): Likewise. (elf_s390_grok_prstatus): Add missing prototype.
* *** empty log message ***gdbadmin2002-02-051-1/+1
|
* 2002-02-04 Michael Snyder <msnyder@redhat.com>Michael Snyder2002-02-042-1/+8
| | | | * memattr.c (_initialize_mem): Elaborate the help for 'mem' command.
* daily updateAlan Modra2002-02-041-1/+1
|
* 2002-02-04 Daniel Jacobowitz <drow@mvista.com>Daniel Jacobowitz2002-02-042-1/+33
| | | | | * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS. Add rules for building the register data files.
* 2002-02-04 Daniel Jacobowitz <drow@mvista.com>Daniel Jacobowitz2002-02-042-1/+6
| | | | | * regformats/regdat.sh: Add braces to the definition of expedite_regs_${arch}.