Update NEWS.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
index 7d64d80072b560381f70dc72891b7480aebe2200..10442bf2bc8747ba2e81276dcdf9c3c349bf240f 100644 (file)
@@ -1,3 +1,143 @@
+2001-07-25  Eli Zaretskii  <eliz@is.elta.co.il>
+
+       * NEWS: Update.
+
+2001-07-24  Stephen P. Smith <ischis2@home.com>
+
+       * MAINTAINERS (Stephen P. Smith): Added to write after approval 
+       list.
+
+2001-07-23  Andrew Cagney  <ac131313@redhat.com>
+
+       * mips-tdep.c (mips_push_arguments): Add comment explaining
+       problem with LE o32 GCC.
+
+2001-07-23  Elena Zannoni  <ezannoni@redhat.com>
+
+       * config/powerpc/aix.mh (MH_LDFLAGS): Don't set these, the Gnu linker
+       doesn't understand them.
+
+2001-07-23  Elena Zannoni  <ezannoni@redhat.com>
+
+       * memattr.c (mem_info_command): Reformat output to look more like
+       'info break' output.
+       (_initialize_mem): Improve help.
+
+2001-07-23  Mark Kettenis  <kettenis@gnu.org>
+
+       * configure.in (AC_CHECK_FUNCS): Add setpggrp.
+       (AC_FUNC_SETPGRP): Add.
+       * aclocal.m4, configure, config.in: Regenerated.
+       * inflow.c (gdb_setpgid): Get rid of NEED_POSIX_SETPGID and
+       SETPGRP_ARGS.  Always use setpgid if it is available, fall back on
+       setpgrp if it isn't.  Use SETPGRP_VOID (defined by autoconf) to
+       distinguish between the two setpgrp flavours.
+       * config/xm-sysv4.h, config/arm/xm-linux.h,
+       config/i386/xm-i386aix.h, config/i386/xm-sco.h,
+       config/i386/xm-linux.h, config/i386/xm-ptx.h,
+       config/m68k/xm-linux.h, config/powerpc/xm-linux.h,
+       config/sparc/xm-linux.h, config/sparc/xm-sun4sol2.h,
+       config/ia64/xm-linux.h (NEED_POSIX_SETPGID): Remove.
+       * config/rs6000/xm-rs6000.h (SETPGRP_ARGS): Remove.
+
+2001-07-23  Eli Zaretskii  <eliz@is.elta.co.il>
+
+       * go32-nat.c (read_memory_region): Set the granularity bit of the
+       allocated segment according to its size, and adjust the limit to
+       be page-aligned if the segment is page-granular.
+
+       * (get_cr3, get_pde, get_pte, display_ptable_entry, go32_pde) 
+       (display_page_table, go32_pte, go32_pte_for_address): New functions.
+       (_initialize_go32_nat): Initialize and document them.
+
+2001-07-22  Mark Kettenis  <kettenis@gnu.org>
+
+       * i386gnu-nat.c: Include "i387-nat.h".
+       (struct env387): Removed.
+       (reg_offset): Fix comment.
+       (fetch_fpregs): Use FCTRL_REGNUM and FOP_REGNUM instead of
+       FIRST_FPU_CONTROL_REGNUM and LAST_FPU_CONTROL_REGNUM.  Rewrite to
+       use i387_supply_fsave.
+       (gnu_fetch_registers): Remove spurious whitespace.
+       (convert_to_env387): Remove.
+       (store_fpregs): Add argument regno.  Use i387_fill_fsave instead
+       of convert_to_env387.
+       (gnu_store_registers): Remove spurious whitespace.  Pass REGNO to
+       store_fpregs.
+       * config/i386/i386gnu.mt (TDEPFILES): Add i387-tdep.o.
+       * config/i386/i386gnu.mh (XDEPFILES): Remove i387-tdep.o.
+       (NATDEPFILES): Add i387-nat.o.
+
+2001-07-22  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
+
+       * Makefile.in (ALLDEPFILES): Add m68hc11-tdep.c.
+       (m68hc11-tdep.o): Define dependencies.
+
+2001-07-22  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
+
+       * m68hc11-tdep.c (m68hc11_gdbarch_init): Define int at 16-bits.
+
+2001-07-21  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
+
+       * utils.c (init_page_info): Use tui_get_command_dimension.
+       * printcmd.c (disassemble_command): Simplify tui specific code,
+       use tui_is_window_visible, tui_show_assembly.
+
+2001-07-21  Mark Kettenis  <kettenis@gnu.org>
+
+       * i386bsd-nat.c: Do not include <sys/sysctl.h>.
+       (_initialize_i386bsd_nat) [KERN_PS_STRINGS]: Move FreeBSD-specific
+       code to ...
+       * i386fbsd-nat.c: ... here.  New file.
+       * config/i386/fbsd.mh (NATDEPFILES): Add i386-fbsd.o.
+       * config/i386/nm-fbsd.h (CHILD_RESUME): Define.
+       * Makefile.in (ALLDEPFILES): Add i386fbsd-nat.c.
+       (i386fbsd-nat.o): Add dependencies.
+       
+2001-07-19  Daniel Jacobowitz  <drow@mvista.com>
+
+       * signals.c: New file.
+       * Makefile.in: Add signals.o.
+       * target.c (struct signals, target_signal_to_name)
+       (target_signal_from_name, target_signal_from_host)
+       (do_target_signal_to_host, target_signal_to_host_p)
+       (target_signal_to_host, target_signal_from_command): Move to
+       signals.c.
+       (initialize_targets): Move check of struct signals to...
+       * signals.c (_initialize_signals): Here.
+
+2001-07-19  Andrew Cagney  <ac131313@redhat.com>
+
+       * MAINTAINERS: Add Michael Chastain as C++ testsuite maintainer.
+
+2001-07-19  Andrew Cagney  <ac131313@redhat.com>
+
+       From Stephen Smith:
+       * configure.tgt (i*86-*-pe*): New target.
+
+2001-07-19  Andrew Cagney  <ac131313@redhat.com>
+
+       From 2001-07-16 Rodney Brown <rbrown64@csc.com.au>:
+       * infttrace.c (child_thread_alive): Fix gdb_tid typo.
+       * somsolib.c (no_shared_libraries): Provide stub.
+       * xcoffsolib.c (no_shared_libraries): Provide stub.
+
+2001-07-18  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
+
+       * Makefile.in (COMMON_OBS): Remove tui-file.o.
+       (SUBDIR_TUI_OBS): Add it here.
+       (SUBDIR_TUI_SRCS): Move tui-file.c and tui-file.h here.
+       (main.o): Remove dependency with tui-file.h.
+
+2001-07-17  Elena Zannoni  <ezannoni@redhat.com>
+
+       * Makefile.in (tui-file.o): Update dependencies.
+
+2001-07-17  Elena Zannoni  <ezannoni@redhat.com>
+
+       * top.c (catch_errors): Convert PTR to void * in parameters list.
+       (quit_cover): Ditto.
+
 2001-07-17  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
 
        * source.c (find_source_lines): Remove tui test, must be replaced
This page took 0.024594 seconds and 4 git commands to generate.