1999-01-19 Fernando Nasser <fnasser@totem.to.cygnus.com>
[deliverable/binutils-gdb.git] / gdb / ChangeLog
index df444e8e42a64f77b7a063a57c75cf20a8ec5413..14da95c6debe9eb1c8e85aa250441219307c0ddf 100644 (file)
@@ -1,3 +1,150 @@
+1999-01-19  Jim Blandy  <jimb@zwingli.cygnus.com>
+
+       Use aclocal to generate GDB's aclocal.m4 script.  
+       * acinclude.m4: New file, containing the hand-written local macro
+       definitions that used to be in aclocal.m4.  Don't sinclude
+       ../bfd/aclocal.m4 any more; running aclocal in this directory will
+       get us the definitions we need.  HOWEVER: Do sinclude
+       ../bfd/acinclude.m4, because we need the definition of
+       BFD_NEED_DECLARATION.
+       * aclocal.m4: Regenerated by aclocal.
+       * configure: Regenerated by autoconf.
+
+Tue Jan 19 10:27:23 1999  David Taylor  <taylor@texas.cygnus.com>
+
+       * breakpoint.c (disable_breakpoints_in_shlibs): new parameter,
+       silent, controls whether to print message about removal of shared
+       library breakpoints.
+       * breakpoint.h (disable_breakpoints_in_shlibs): decl updated.
+       * irix5-nat.c (clear_solib): call disable_breakpoints_in_shlibs.
+       * osfsolib.c (clear_solib): ditto.
+       * solib.c (clear_solib): ditto.
+       * somsolib.c (som_solib_restart): update call to
+       disable_breakpoints_in_shlibs.
+
+       * target.h (child_post_attach): only declare if CHILD_POST_ATTACH
+       is define.
+
+Tue Jan 19 18:07:11 1999  Andrew Cagney  <cagney@b1.cygnus.com>
+
+       * corelow.c (solib_add_stub): Ditto.
+       (core_file_to_sym_file): Cast make_cleanup parameter.
+
+       * solib.c (symbol_add_stub, solib_map_sections): Change argument
+       to PTR insted of a char*.  Matches catch_errors interface.
+
+Mon Jan 18 14:01:24 1999  Andrew Cagney  <cagney@b1.cygnus.com>
+
+       * remote-array.c (array_open): Don't use fprintf_filtered to send
+       data to the log file.
+
+       * remote-array.c (handle_load_dll): Change argument type to PTR so
+       that it is compatible with catch_errors.
+       * ocd.c (ocd_start_remote): Ditto.
+       * remote-sds.c (sds_start_remote): Ditto.
+
+       * win32-nat.c (win32_child_thread_alive): Namespace proof
+       child_thread_alive.
+       (init_child_ops): Update.
+
+Mon Jan 18 12:03:47 1999  Andrew Cagney  <cagney@b1.cygnus.com>
+
+       * remote-rdi.c (arm_rdi_open): Set gdb_hostif.hostosarg and
+       gdb_hostif.dbgarg to NULL instead of stdout.
+       (voiddummy, myprint, mywritec): Use gdb_stdout instead of stdout.
+
+Mon Jan 18 16:40:50 1999  Stan Shebs  <shebs@andros.cygnus.com>
+
+       * ser-ocd.c (ocd_open): Handle Unix case gracefully.
+
+       * target.c (dummy_target): Don't initialize statically.
+       (init_dummy_target): New function, fills in dummy_target.
+       (initialize_targets): Use it.
+       * hpux-thread.c (hpux_thread_ops): Don't initialize statically.
+       (init_hpux_thread_ops): New function, fills in hpux_thread_ops.
+       (_initialize_hpux_thread): Use it.
+       * m3-nat.c (m3_ops): Don't initialize statically.
+       (init_m3_ops): New function, fills in m3_ops.
+       (_initialize_m3): Use it.
+
+1999-01-18  Fernando Nasser  <fnasser@totem.to.cygnus.com>
+
+       * sol-thread.c: delete compile time initialization of target_ops
+         (_initialize_sol_thread): initialize target_ops at run time.
+       * hpux-thread.c: added target_ops entry.
+       * m3-nat.c: ditto.
+
+Mon Jan 18 15:19:13 1999  David Taylor  <taylor@texas.cygnus.com>
+
+       * procfs.c (procfs_ops): delete compile time initialization.
+       (_initialize_procfs): initialize procfs_ops at run time.
+
+Mon Jan 18 12:51:44 1999  Christopher Faylor <cgf@cygnus.com>
+
+       * configure.in: Ensure that -luser32 is always linked in
+       for cygwin build.
+       * configure: Regenerated.
+
+Mon Jan 18 08:38:05 1999  Mark Alexander  <marka@cygnus.com>
+
+       * values.c (value_virtual_fn_field): Clear the pointed-to
+       offset when casting to the base class.
+
+Mon Jan 18 10:30:51 1999  David Taylor  <taylor@texas.cygnus.com>
+
+       * remote-udi.c (init_udi_ops): change non-existant udi_run_ops to
+       udi_ops; delete NULL initializers.
+
+Mon Jan 18 12:03:47 1999  Andrew Cagney  <cagney@b1.cygnus.com>
+
+       * serial.c (serial_close): gdb_fclose tages gdb_file** arg, not
+       gdb_file*.
+
+       * f-valprint.c, target.c, gdbarch.c: Pass gdb_stderr not stderr.
+
+Mon Jan 18 10:46:12 1999  Andrew Cagney  <cagney@b1.cygnus.com>
+
+       * stack.c (print_frame_info_base): Don't cast call to
+       catch_errors.
+       (print_args_stub): Change char* arg to PTR.
+       * symmisc.c (print_symbol): Ditto.
+       * top.c (quit_cover): Ditto.
+       * remote.c (remote_open_1, remote_start_remote): Ditto.
+       * infrun.c (normal_stop, hook_stop_stub, restore_selected_frame):
+       Ditto.
+
+       * stack.c (backtrace_command): Cast first arg of make_cleanup to
+       make_cleanup_func.
+       * remote.c (remote_kill): Cast putpkt arg to catch_errors_ftype.
+
+Mon Jan 18 08:47:02 1999  Andrew Cagney  <cagney@b1.cygnus.com>
+       
+       * defs.h (catch_errors_ftype): Define.
+       (catch_errors): Replace char* arg with PTR arg.
+       * top.c (catch_errors): Update
+
+       * breakpoint.c (bpstat_stop_status, bpstat_stop_status,
+       delete_breakpoint, breakpoint_re_set): Delete all casts in call to
+       catch_errors.
+       (breakpoint_cond_eval, watchpoint_check,
+       cover_target_enable_exception_callback, breakpoint_re_set_one):
+       Arg is PTR not char*.
+       
+       * breakpoint.c (cover_target_enable_exception_callback): Change
+       type to int. Check for cast values of 0 and -1.  Return a result!
+       (insert_breakpoints): Move declaration of SAL and ARGS to where
+       they are used.
+
+1999-01-16  Fernando Nasser  <fnasser@totem.to.cygnus.com>
+
+       * remote.c (remote_query): new function - creates proper interface
+       to the remote protocol "q" command.     
+
+Fri Jan 15 17:11:48 EST 1999  Zdenek Radouch   (radouch@cygnus.com)
+
+       * config/fr30/tm-fr30.h:  Changed ABI to match GCC change
+         (always use pointer for structs passed by value).
+
 1999-01-15  Fernando Nasser  <fnasser@totem.to.cygnus.com>
 
        * target.h: added entry for target queries (to_query)
This page took 0.024504 seconds and 4 git commands to generate.