* i387-tdep.c (i387_fill_fsave, i387_fill_fxsave): Remove.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
index 9073535a2a0a720edfbcca2f62bdbf43c7b0c25b..62afb81cc662f97f24308e57dc15c5ea165b4f48 100644 (file)
@@ -1,3 +1,487 @@
+2007-05-06  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * i387-tdep.c (i387_fill_fsave, i387_fill_fxsave): Remove.
+       * i387-tdep.h (i387_fill_fsave, i387_fill_fxsave): Remove prototypes.
+       * i368-linux-nat.c (supply_fpregset, supply_fpxregset): Replace
+       i387_fill_fsave and i387_fill_fxsave calls by inline copies.
+       * i386-nto-tdep.c (i386nto_regset_fill): Likewise.
+       * i386gnu-nat.c (store_fpregs): Likewise.
+       * i386v4-nat.c (fill_fpregset): Likewise.
+       * go32-nat.c (store_register, go32_store_registers): Likewise.
+
+2007-05-06  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * cris-tdep.c (supply_gregset): Rename to ...
+       (cris_supply_gregset): ... this.  Add REGCACHE parameter.  Use it
+       instead of current_regcache.
+       (fetch_core_registers): Update call.  Pass current_regcache.
+
+2007-05-06  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * arnmnbsd-nat.c (supply_gregset): Rename to ...
+       (arm_supply_gregset): ... this.  Add REGCACHE parameter.
+       Use it instead of current_regcache.
+       (supply_fparegset): Rename to ...
+       (arm_supply_fparegset): ... this.  Add REGCACHE parameter.
+       Use it instead of current_regcache.
+       (fetch_regs, fetch_fp_regs): Update calls.  Pass current_regcache.
+       (fetch_core_registers, fetch_elfcore_registers): Likewise.
+
+2007-05-06  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * alpha-tdep.c (alpha_supply_int_regs, alpha_fill_int_regs,
+       alpha_supply_fp_regs, alpha_fill_fp_regs): Add REGCACHE parameter,
+       use it instead of current_regcache.
+       * alpha-tdep.h (struct regcache): Add forward declaration.
+       (alpha_supply_int_regs, alpha_fill_int_regs, alpha_supply_fp_regs,
+       alpha_fill_fp_regs): Update prototypes.
+
+       * alpha-nat.c: (supply_gregset, fill_gregset, supply_fpregset,
+       fill_fpregset): Pass current_regcache to alpha_supply/fill_ routines.
+       * alpha-linux-nat.c: Include "regcache.h".
+       (supply_gregset, fill_gregset, supply_fpregset, fill_fpregset): Pass
+       current_regcache to alpha_supply/fill_ routines.
+
+       * alphabsd-tdep.c: Include "regcache.h".
+       (alphabsd_supply_reg, alphabsd_supply_fpreg): Add REGCACHE paramter,
+       pass it to alpha_supply_ routines.  Make REGS const.
+       (alphabsd_fill_reg, alphabsd_fill_fpreg): Add REGCACHE parameter,
+       pass it to alpha_fill_ routines.
+       * alphabsd-tdep.h (struct regcache): Add forward declaration.
+       (alphabsd_supply_reg, alphabsd_fill_reg, alphabsd_supply_fpreg,
+       alphabsd_fill_fpreg): Update prototypes.
+
+       * alphanbsd-nat.c (supply_gregset, fill_gregset, supply_fpregset,
+       fill_fpregset, alphabsd_fetch_inferior_registers,
+       alphabsd_store_inferior_registers): Pass current_regcache to
+       alphabsd_supply/fill_ routines.
+
+       * Makefile.in (alpha-linux-nat.o, alphabsd-tdep.o): Update
+       dependencies.
+
+2007-05-06  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * aix-thread.c (supply_gprs64, supply_reg32, supply_fprs,
+       supply_sprs64, supply_sprs32): Add REGCACHE parameter, use it
+       instead of current_regcache.
+       (fetch_regs_user_thread, fetch_regs_kernel_thread): Add
+       REGCACHE parameter, pass it to supply_ routines.
+       (aix_thread_fetch_registers): Pass current_regcache to
+       fetch_regs_user_thread and fetch_regs_kernel_thread.
+
+       (fill_gprs64, fill_gprs32, fill_fprs, fill_sprs64, fill_sprs32):
+       Add REGCACHE parameter, use it instead of current_regcache.
+       Call regcache_valid_p instead of register_cached.
+       (store_regs_user_thread, store_regs_kernel_thread): Likewise.
+       Also, pass REGCACHE to fill_ routines.
+       (aix_thread_store_registers): Pass current_regcache to
+       store_regs_user_thread and store_regs_kernel_thread.
+
+2007-05-06  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * m32r-linux-nat.c (supply_gregset): Do not modify contents
+       pointed to by GREGSETP.
+
+2007-05-06  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * irix5-nat.c (fill_gregset): Use regcache_raw_collect instead
+       of regcache_raw_read_signed.
+       (fill_fpregset): Use regcache_raw_collect instead of
+       regcache_raw_read.
+
+2007-05-03  Kevin Buettner  <kevinb@redhat.com>
+
+       * mips-tdep.c (mips_eabi_push_dummy_call): When pushing floating
+       point arguments, test explicitly for use of the EABI32 ABI
+       instead of inferring this condition from tests on register
+       sizes.
+
+2007-05-03  Kevin Buettner  <kevinb@redhat.com>
+
+       * breakpoint.c (set_raw_breakpoint): Adjust breakpoint's address
+       prior to allocating its location.
+
+2007-05-02  Maciej W. Rozycki  <macro@mips.com>
+
+       * mips-tdep.c (mips_o32_push_dummy_call): Remove conditions
+       based on mips_abi_regsize() whose result is known in advance.
+       (mips_o64_push_dummy_call): Likewise.
+
+2007-04-29  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * m68klinux-nat.c: Remove #ifndef USE_PROC_FS check.
+       * m68k-tdep.c: Remove code within #ifdef USE_PROC_FS.
+
+       * mips-linux-nat.c: Include "gregset.h".
+       (supply_gregset, fill_gregset, supply_fpregset, fill_fpregset): Move
+       from mips-linux-tdep.c.  Change parameter type to gdb_gregset_t.
+       * mips-linux-tdep.c (supply_gregset, fill_gregset, supply_fpregset,
+       fill_fpregset): Move to mips-linux-nat.c.
+
+       * Makefile.in (m68k-tdep.o, mips-linux-nat.o): Update dependencies.
+
+2007-04-28  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * regcache.c (deprecated_read_register_gen): Remove, inline ...
+       (read_register): ... here.
+       (deprecated_write_register_gen): Remove, inline ...
+       (write_register): ... here.
+       * regcache.h (deprecated_read_register_gen): Remove prototype.
+       (deprecated_write_register_gen): Likewise.
+
+       * remote-sim.c (gdbsim_store_register): Replace call to
+       deprecated_read_register_gen with regcache_cooked_read.
+       * target.c (debug_print_register): Replace calls to
+       deprecated_read_register_gen and read_register with
+       regcache_cooked_read.
+
+2007-04-28  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * hpux-thread.c (hpux_thread_store_registers): Use
+       regcache_raw_collect, not regcache_raw_read.
+       * irix5-nat.c (fetch_core_registers): Use regcache_raw_supply,
+       not regcache_raw_write.
+
+2007-04-28  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * gdbarch.sh: Remove deprecated_register_byte.
+       * gdbarch.c, gdbarch.h: Regenerate.
+       * arch-utils.h (generic_register_size, generic_register_byte): Remove.
+       * arch-utils.c (generic_register_size, generic_register_byte): Remove.
+
+       * regcache.h (regcache_valid_p): Make REGCACHE parameter const.
+       * regcache.c (regcache_valid_p): Allow to query cooked registers in
+       read-only register caches.  Make REGCACHE parameter const.
+       (regcache_dump): Do not check DEPRECATED_REGISTER_BYTE.
+
+       * mi/mi-main.c (old_regs): Remove.
+       (mi_setup_architecture_data, _initialize_mi_main): Remove.
+       (register_changed_p): Reimplement to compare two register caches.
+       (mi_cmd_data_list_changed_registers): Update caller.
+       * mi/mi-main.h (mi_setup_architecture_data): Remove.
+       * mi/mi-interp.c (mi_interpreter_init): Do not call
+       mi_setup_architecture_data.
+
+2007-04-28  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * alpha-nat.c (ALPHA_REGSET_BASE, ALPHA_REGSET_UNIQUE): Do not define,
+       inline definition at the places the macros are used.
+       * alpha-linux-nat.c (ALPHA_REGSET_BASE, ALPHA_REGSET_UNIQUE): Likewise.
+
+2007-04-28  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * rs6000-aix-tdep.c: Include "regcache.h", "regset.h", and
+       "gdb_string.h".
+       (rs6000_aix32_reg_offsets, rs6000_aix64_reg_offsets): New variables.
+       (rs6000_aix_supply_regset, rs6000_aix_collect_regset): New functions.
+       (rs6000_aix32_regset, rs6000_aix64_regset): New variables.
+       (rs6000_aix_regset_from_core_section): New function.
+       (rs6000_aix_init_osabi): Register it.
+       (_initialize_rs6000_aix_tdep): Register GDB_OSABI_AIX osabi and
+       sniffer for bfd_arch_powerpc as well as bfd_arch_rs6000. 
+       * rs6000-nat.c (CoreRegs): Do not define type.
+       (fetch_core_registers, rs6000_core_fns): Remove.
+       (_initialize_core_rs6000): Do not register it.  Rename to ...
+       (_initialize_rs6000_nat): ... this.
+       * Makefile.in (rs6000-aix-tdep.o): Update dependencies.
+
+2007-04-27  Kevin Buettner  <kevinb@redhat.com>
+
+       * dwarf2expr.c (unsigned_address_type): Add forward declaration.
+       (dwarf2_read_address): Sign extend return address as required by
+       target architecture.
+
+2007-04-27  Kevin Buettner  <kevinb@redhat.com>
+
+       * solib-frv.c (lm_base): Bail out if the main executable has
+       not been relocated.
+
+2007-04-27  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * alpha-linux-tdep.c (alpha_linux_supply_fpregset): Correct location
+       of FPCR register in fpregset.
+
+2007-04-27  Maciej W. Rozycki  <macro@mips.com>
+
+       * Makefile.in (gdbtk-wrapper.o): Update dependencies.
+       (gdbtk-varobj.o, gdbtk-cmds.o, gdbtk-stack.o): Likewise.
+
+2007-04-27  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * config/rs6000/nm-rs6000.h (CHILD_SPECIAL_WAITSTATUS): Remove.
+       * rs6000-nat.c (rs6000_wait): New function.
+       (_initialize_core_rs6000): Install it as to_wait target method.
+       * target.c (store_waitstatus): Don't check CHILD_SPECIAL_WAITSTATUS.
+
+2007-04-27  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * config/rs6000/nm-rs6000.h (TARGET_CREATE_INFERIOR_HOOK): Remove.
+       * fork-child.c (fork_inferior): Don't call TARGET_CREATE_INFERIOR_HOOK.
+       * rs6000-nat.c (super_create_inferior): New variable.
+       (rs6000_create_inferior): Make static.  Adapt argument list.  Call
+       original version of create_inferior via super_create_inferior.
+       (_initialize_core_rs6000): Install to_create_inferior target method.
+
+2007-04-27  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * aix-thread.c (aix_thread_xfer_memory): Replace by ...
+       (aix_thread_xfer_partial): ... this.
+       (init_aix_thread_ops): Install to_xfer_partial instead
+       of deprecated_xfer_memory target method.
+
+       * config/powerpc/aix.mh (NATDEPFILES): Remove infptrace.o
+       and inftarg.o, add inf-ptrace.o.
+       * config/rs6000/nm-rs6000.h (FETCH_INFERIOR_REGISTERS,
+       CHILD_XFER_MEMORY, KERNEL_U_SIZE, kernel_u_size): Remove.
+       * rs6000-nat.c: Include "inf-ptrace.h" and "gdb_stdint.h".
+       (fetch_inferior_registers): Rename to ...
+       (rs6000_fetch_inferior_registers): ... this.  Make static.
+       (store_inferior_registers): Rename to ...
+       (rs6000_store_inferior_registers): ... this.  Make static.
+       (read_word, child_xfer_memory): Remove.
+       (rs6000_xfer_partial): New function.
+       (kernel_u_size): Remove.
+       (_initialize_core_rs6000): Add inf_ptrace-based target.
+       * Makefile.in (rs6000-nat.o): Update dependencies.
+
+2007-04-27  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * inf-ptrace.c: Include "gdb_stdint.h".
+       (inf_ptrace_xfer_partial): Use "uintptr_t" instead of "long" as 
+       intermediate type when casting CORE_ADDR to PTRACE_TYPE_ARG3.
+       (inf_ptrace_fetch_register): Add intermediate cast to "uintptr_t"
+       before casting CORE_ADDR to PTRACE_TYPE_ARG3.
+       (inf_ptrace_store_register): Likewise.
+       * Makefile.in (inf-ptrace.o): Update dependencies.
+
+2007-04-27  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * configure.host (rs6000-*-*): Merge with powerpc-*-aix* rules.
+       * configure.tgt (rs6000-*-*): Likewise.
+       * config/rs6000/aix4.mh: Delete file.
+       * config/rs6000/aix4.mt: Delete file.
+       * config/rs6000/rs6000.mh: Delete file.
+       * config/rs6000/rs6000.mt: Delete file.
+
+       * config/powerpc/nm-aix.h: Delete file.
+       * config/powerpc/aix.mh (NAT_FILE): Set to config/rs6000/nm-rs6000.h.
+
+2007-04-27  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * aix-thread.c (fill_sprs32): Change argument types to "uint32_t *".
+       Remove obsolete part of comment.
+       (store_regs_user_thread): Use uint32_t temporaries when calling
+       fill_sprs32.
+       (store_regs_kernel_thread): Likewise.  Add assertion to verify
+       correct size of struct ptsprs members.
+       (aix_thread_xfer_memory): Fix type of myaddr.
+       (aix_thread_extra_thread_info): Fix compiler warning.
+       * rs6000-nat.c (rs6000_ptrace64): Change type of buf to "void *".
+       (fetch_register, store_register): Adapt callers.
+
+2007-04-27  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * vec.h (vec_free): Rename to vec_free_.  Adapt users.
+
+2007-04-25  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * alpha-linux-tdep.c: Include "gdb_string.h", "regset.h",
+       and "regcache.h".
+       (alpha_linux_supply_gregset, alpha_linux_supply_fpregset): New.
+       (alpha_linux_gregset, alpha_linux_fpregset): New variables.
+       (alpha_linux_regset_from_core_section): New function.
+       (alpha_linux_init_abi): Install it.
+       * alpha-linux-nat.c: Do not include "gdbcore.h".  Include
+       "alpha-tdep.h", <sys/ptrace.h>, <alpha/ptrace.h>,
+       <sys/procfs.h>, and "gregset.h".
+       (ALPHA_REGSET_BASE, ALPHA_REGSET_UNIQUE, ALPHA_UNIQUE_PTRACE_ADDR):
+       Move from config/alpha/nm-linux.h.
+       (supply_gregset, fill_gregset, supply_fpregset, fill_fpregset): Copy
+       from alpha-nat.c.
+       (alpha_linux_register_u_offset): Inline register_addr from alpha-nat.c.
+       * alpha-nat.c: Remove #ifdef __linux__ section.
+       (fetch_elf_core_registers, alpha_elf_core_fns): Remove.
+       (_initialize_core_alpha): Do not register alpha_elf_core_fns.
+       (ALPHA_UNIQUE_PTRACE_ADDR, ALPHA_REGSET_UNIQUE): Define unconditionally.
+       (ALPHA_REGSET_BASE): Move from config/alpha/nm-osf.h.
+       * config/alpha/alpha-linux.mh (NAT_FILE): Set to config/nm-linux.h.
+       (NATDEPFILES): Remove alpha-nat.o.
+       * config/alpha/nm-linux.h: Delete file.
+       * config/alpha/nm-osf.h (ALPHA_REGSET_BASE): Move to alpha-nat.c.
+       * Makefile.in (alpha-linux-nat.o): Update dependencies.
+       (alpha-linux-tdep.o): Likewise.
+
+2007-04-25  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * mips-linux-nat.c: No longer include "gdbcore.h".
+       (mips_linux_register_addr): Move from mips-linux-tdep.c.
+       (mips64_linux_register_addr): Likewise.
+       (mips_linux_register_u_offset): Call mips_linux_register_addr or
+       mips64_linux_register_addr instead of register_addr.
+       * mips-linux-tdep.c (mips_linux_register_addr,
+       mips64_linux_register_addr): Move to mips-linux-nat.c.
+       (register_addr): Remove.
+       (register_addr_data, init_register_addr_data): Remove.
+       (_initialize_mips_linux_tdep): Do not initialize register_addr_data.
+       (set_mips_linux_register_addr): Remove.
+       (mips_linux_init_abi): Do not call set_mips_linux_register_addr.
+       * Makefile.in (mips-linux-nat.o): Update dependencies.
+
+2007-04-25  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * linux-nat.c (linux_register_u_offset): Remove.
+       (linux_target_install_ops): New function.
+       (linux_target): Use it.
+       (linux_trad_target): New function.
+       * linux-nat.h (linux_trad_target): Declare.
+
+       * alpha-linux-nat.c: Include "gdbcore.h".
+       (alpha_linux_register_u_offset): New function.
+       (_initialize_alpha_linux_nat): Use linux_trad_target.
+
+       * mips-linux-nat.c: Include "gdbcore.h".
+       (mips_linux_register_u_offset): New function.
+       (_initialize_mips_linux_nat): Use linux_trad_target.
+
+       * config/arm/linux.mh (NAT_FILE): Set to config/nm-linux.h.
+       * config/arm/nm-linux.h: Delete file.
+
+       * config/i386/nm-linux64.h (FETCH_INFERIOR_REGISTERS): Remove.
+       * config/i386/nm-linux.h (FETCH_INFERIOR_REGISTERS): Remove.
+
+       * config/ia64/linux.mh (NAT_FILE): Set to config/nm-linux.h.
+       * config/ia64/nm-linux.h: Delete file.
+
+       * config/m32r/linux.mh (NAT_FILE): Set to config/nm-linux.h.
+       * config/m32r/nm-linux.h: Delete file.
+
+       * config/m68k/linux.mh (NAT_FILE): Set to config/nm-linux.h.
+       * config/m68k/nm-linux.h: Delete file.
+
+       * config/pa/linux.mh (NAT_FILE): Set to config/nm-linux.h.
+       * config/pa/nm-linux.h: Delete file.
+
+       * config/powerpc/linux.mh (NAT_FILE): Set to config/nm-linux.h.
+       * config/powerpc/ppc64-linux.mh (NAT_FILE): Likewise.
+       * config/powerpc/nm-linux.h: Delete file.
+
+       * config/s390/s390.mh (NAT_FILE): Set to config/nm-linux.h.
+       * config/s390/nm-linux.h: Delete file.
+
+       * config/sparc/linux.mh (NAT_FILE): Set to config/nm-linux.h.
+       * config/sparc/linux64.mh (NAT_FILE): Likewise.
+       * config/sparc/nm-linux.h: Delete file.
+
+       * Makefile.in (alpha-linux-nat.o): Update dependencies.
+       (mips-linux-nat.o): Likewise.
+
+2007-04-25  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * core-aout.c: Delete file.
+       * Makefile.in (ALLDEPFILES): Remove core-aout.c.
+       (core-aout.o): Delete rule.
+       * gdbcore.h (kernel_u_addr, KERNEL_U_ADDR): Remove.
+
+       * config/alpha/nm-linux.h (U_REGS_OFFSET): Remove.
+
+       * arm-linux-nat.c (arm_linux_kernel_u_size): Remove.
+       * config/arm/nm-linux.h (U_REGS_OFFSET, KERNEL_U_SIZE,
+       KERNEL_U_ADDR): Remove.
+
+       * i386-linux-nat.c (register_u_addr, kernel_u_size): Remove.
+       (cannot_fetch_register, cannot_store_register): Remove.
+       (fetch_register): Inline cannot_fetch_register and register_addr.
+       (store_register): Inline cannot_store_register and register_addr.
+       * config/i386/linux.mh (NATDEPFILES): Remove core-aout.o.
+       * config/i386/nm-linux.h (KERNEL_U_SIZE, KERNEL_U_ADDR,
+       REGISTER_U_ADDR, CANNOT_FETCH_REGISTER, CANNOT_STORE_REGISTER):
+       Remove.
+
+       * m68klinux-nat.c (m68k_linux_register_u_addr, kernel_u_size): Remove.
+       (fetch_register): Inline register_addr.
+       (store_register): Inline register_addr.
+       * config/m68k/linux.mh (NATDEPFILES): Remove core-aout.o.
+       * config/m68k/nm-linux.h (KERNEL_U_SIZE, KERNEL_U_ADDR,
+       U_REGS_OFFSET, REGISTER_U_ADDR): Remove.
+
+       * config/mips/nm-irix5.h (REGISTER_U_ADDR): Remove.
+       * config/mips/nm-linux.h (KERNEL_U_SIZE, U_REGS_OFFSET,
+       REGISTER_U_ADDR): Remove.
+
+       * hppa-linux-nat.c (register_addr): Rename to ...
+       (hppa_linux_register_addr): ... this.  Make static.
+       (fetch_register, store_register): Adapt callers.
+       * config/pa/nm-linux.h (U_REGS_OFFSET): Remove.
+
+       * ppc-linux-nat.c (kernel_u_size): Remove.
+       * config/powerpc/nm-linux.h (KERNEL_U_SIZE, KERNEL_U_ADDR): Remove.
+
+       * vax-nat.c (vax_kernel_u_addr, vax_register_u_addr): Make static.
+       * config/vax/vax.mh (NATDEPFILES): Remove core-aout.o.
+       (NAT_FILE): Remove.
+       * config/vax/nm-vax.h: Delete file.
+
+2007-04-20  Mark Shinwell  <shinwell@codesourcery.com>
+
+       * MAINTAINERS (Write After Approval): Add myself.
+
+2007-04-20  Mark Shinwell  <shinwell@codesourcery.com>
+
+       * Makefile.in: Adjust dependencies of m68klinux-tdep.c.
+       * m68klinux-tdep.c (m68k_uclinux_sigcontext_reg_offset): New.
+       (m68k_linux_sigcontext_reg_offset): Fix typo.
+       (target_is_uclinux): New.
+       (m68k_linux_inferior_created): New.
+       (m68k_linux_get_sigtramp_info):  Check for uClinux or
+       normal Linux.  Use m68k_uclinux_sigcontext_reg_offset for
+       uClinux.
+       (_initialize_m68k_linux_tdep): Register
+       m68k_linux_inferior_created.
+
+2007-04-19  Pedro Alves  <pedro_alves@portugalmail.pt>
+
+       * win32-nat.c (win32_detach): Remove delete_command call.
+       Resume inferior with win32_resume instead of win32_continue.
+
+2007-04-19  Jerome Guitton  <guitton@adacore.com>
+
+       * ser-mingw.c (fd_is_file): New function.
+       (file_select_thread): New function.
+       (ser_console_wait_handle): Add special handling for files.
+
+2007-04-18  Denis Pilat  <denis.pilat@st.com>
+
+       * dwarf2read.c (read_subrange_type): Use DW_ATE_signed default type
+       when missing from DW_TAG_subrange_type.  Remove the handling of null
+       return from die_type.
+
+2007-04-18  Maciej W. Rozycki  <macro@mips.com>
+
+       * mips-tdep.c (mips_eabi_push_dummy_call): Revert the last
+       change to rearrange some brackets.
+       (mips_n32n64_push_dummy_call): Likewise.
+       (mips_o32_push_dummy_call): Likewise.
+       (mips_o64_push_dummy_call): Likewise.
+
+2007-04-18  Denis Pilat  <denis.pilat@st.com>
+
+       * infcmd.c (post_create_inferior): Start with a call to 
+       target_terminal_ours.
+
+2007-04-17  Maciej W. Rozycki  <macro@mips.com>
+
+       * mips-tdep.c (mips_eabi_push_dummy_call): Rearrange some
+       brackets.
+       (mips_n32n64_push_dummy_call): Likewise.  Reformat some
+       expressions.
+       (mips_o32_push_dummy_call): Likewise.
+       (mips_o64_push_dummy_call): Likewise.
+
+2007-04-17  Maciej W. Rozycki  <macro@mips.com>
+
+       * mips-tdep.c (mips_n32n64_push_dummy_call): Fix a typo in a
+       comment.
+
 2007-04-17  Maciej W. Rozycki  <macro@mips.com>
 
        * mips-tdep.c (mips_n32n64_push_dummy_call): Fix a typo in a
This page took 0.02784 seconds and 4 git commands to generate.