* utils.c (internal_vproblem): Guard call to fork with
[binutils-gdb.git] / gdb / ChangeLog
1 2005-03-15 Mark Mitchell <mark@codesourcery.com>
2
3 * utils.c (internal_vproblem): Guard call to fork with
4 HAVE_WORKING_FORK.
5 * cli/cli-cmds.c (shell_escape): Guard call to vfork with
6 HAVE_WORKING_VFORK and HAVE_WORKING_FORK.
7
8 * remote-fileo.c (remote_fileio_mode_to_host): Accomodate lack of
9 S_IRGRP and related macros.
10 (remote_fileio_mode_to_target): Likewise.
11
12 2005-03-14 Ben Elliston <bje@au.ibm.com>
13
14 * Makefile.in (CLIBS): Link libbfd after libopcodes, as it is a
15 more primitive library.
16
17 2005-03-13 Mark Kettenis <kettenis@elgar.gnu.org>
18
19 * inf-ttrace.c (inf_ttrace_pid_to_str): Use snprintf instead of
20 sprintf.
21 * target.c (normal_pid_to_str): Likewise.
22 * remote.c (remote_pid_to_str): Use snprint instead of sprintf.
23 Change capitalization of "thread". Use ptid_get_pid instead of
24 GETPID.
25
26 * cp-abi.c (set_cp_abi_as_auto_default): Use xasprintf instead of
27 a combination of xmalloc and sprintf.
28
29 2005-03-13 Jim Blandy <jimb@redhat.com>
30
31 * configure.ac: Use '=', not '=='; the latter is a GNU extension.
32 * configure: Regenerated.
33
34 2005-03-11 Michael Snyder <msnyder@redhat.com>
35
36 * mn10300-tdep.c (mn10300_dummy_unwind_dummy_id): Replace
37 stub fn with real implementatin mn10300_unwind_dummy_id.
38 (mn10300_push_dummy_call): Implement. Bare bones version,
39 does not handle structs or floats.
40
41 2005-03-11 Jim Blandy <jimb@redhat.com>
42
43 Avoid warnings due to the use of -Wuninitialized without -O.
44 * configure.ac (build_warnings): Include -Wuninitialized only if
45 CFLAGS is unset at configure time, or CFLAGS is set and includes
46 some -O option other than -O0.
47 * configure: Regenerated.
48
49 * mips-tdep.c (show_mips_abi): Change calling conventions to match
50 those expected by add_setshow_enum_cmd. Use 'file' argument as
51 appropriate.
52
53 2005-03-10 Daniel Jacobowitz <dan@codesourcery.com>
54
55 * Makefile.in (SFILES): Add cp-names.y.
56 (libiberty_h, safe_ctype_h): New.
57 (YYFILES): Add cp-names.c.
58 (YYOBJ): Add cp-names.o.
59 (test-cp-names.o, test-cp-names$(EXEEXT), cp-names.o): New rules.
60 (clean): Remove test-cp-names$(EXEEXT).
61 (local-maintainer-clean): Remove cp-names.c.
62 * cp-names.y: New file.
63 * cp-support.c (find_last_component): Delete.
64 (d_left, d_right): Define.
65 (cp_canonicalize_string, mangled_name_to_comp): New functions.
66 (cp_class_name_from_physname, method_name_from_physname): Rewrite
67 to use mangled_name_to_comp.
68 * cp-support.h (cp_canonicalize_string, cp_demangled_name_to_comp)
69 (cp_comp_to_string): New prototypes.
70 * config/djgpp/fnchange.lst: Add cp-names.c.
71
72 2005-03-10 Bob Rossi <bob@brasko.net>
73
74 * main.c (print_gdb_help): Remove the --[no]async help message.
75
76 2005-03-10 Mark Kettenis <kettenis@gnu.org>
77
78 * proc-api.c: Update copyright year.
79 (_initialize_proc_api): Revert previous patch, removing spurious
80 space instead.
81
82 2005-03-09 Joel Brobecker <brobecker@adacore.com>
83
84 * regcache.c: Fix typo in comment.
85
86 2005-03-09 David Lecomber <david@lecomber.net>
87
88 * proc-api.c (_initialize_proc_api): Fix invalid multi-line
89 i18n text.
90
91 2005-03-09 Mark Kettenis <kettenis@gnu.org>
92
93 * sparc-tdep.c (sparc_frame_cache): Adjust cached frame base
94 address for 64-bit code.
95 (sparc_unwind_dummy_id): Likewise.
96 * sparc64-tdep.c (sparc64_frame_prev_register): Adjust for new
97 frame base address convention.
98 (sparc64_push_dummy_call): Likewise.
99 * sparc64nbsd-tdep.c: Update copyright year.
100 (sparc64nbsd_sigcontext_frame_cache): Adjust cached frame base
101 address for 64-bit code.
102 (sparc64nbsd_init_abi): Tweak comment.
103 * sparc64obsd-tdep.c: Update copyright year.
104 (sparc64obsd_frame_cache): Adjust cached frame base address for
105 64-bit code.
106 (sparc64obsd_init_abi): Tweak comment.
107
108 2005-03-09 Corinna Vinschen <vinschen@redhat.com>
109
110 * exceptions.h (TRY_CATCH): Define setjmp/sigsetjmp macro safe.
111
112 2005-03-09 Joel Brobecker <brobecker@adacore.com>
113
114 * dwarf2read.c (dwarf_decode_lines): Use the complete filename
115 when creating include psymtabs.
116
117 2005-03-08 Mark Mitchell <mark@codesourcery.com>
118
119 * environ.h (struct environ): Rename to ...
120 (struct gdb_environ): ... this.
121 (make_environ): Update prototype.
122 (free_environ): Likewise.
123 (init_environ): Likewise.
124 (get_in_environ): Likewise.
125 (set_in_environ): Likewise.
126 (unset_in_environ): Likewise.
127 (environ_vector): Likewise.
128 * environ.c (make_environ): Replace "struct environ" with "struct
129 gdb_environ".
130 (free_environ): Likewise.
131 (init_environ): Likewise.
132 (environ_vector): Likewise.
133 (get_in_environ): Likewise.
134 (set_in_environ): Likewise.
135 (unset_in_environ): Likewise.
136 * infcmd.c (inferior_environ): Likewise.
137 * inferior.h (inferior_environ): Likewise.
138
139 2005-03-08 Joel Brobecker <brobecker@adacore.com>
140
141 * infcmd.c (run_command_1): New function, extracted from
142 run_command.
143 (run_command): Replace implementation by call to run_command_1.
144 (start_command): Use run_command_1 to insert the temporary
145 breakpoint and run the program. Remove code that's no longer
146 needed, as already done at the proper time by run_command_1.
147
148 2005-03-08 Daniel Jacobowitz <dan@codesourcery.com>
149
150 * symfile.c (clear_symtab_users): Call
151 clear_current_source_symtab_and_line first.
152
153 2005-03-08 Nathan Sidwell <nathan@codesourcery.com>
154
155 * ax-gdb.c (gen_expr): Add UNOP_PLUS case.
156 * c-exp.y (exp): Add unary plus.
157 * eval.c (evaluate_subexp_standard): Add UNOP_PLUS case.
158 * valarith.c (value_x_unop): Add UNOP_PLUS case.
159 (value_pos): New.
160 * value.h (value_pos): Declare.
161
162 * remote.c (MIN_REMOTE_PACKET_SIZE): Set to 20.
163 (remote_fetch_registers): Allow uppercase hex when resyncing.
164 (remote_write_bytes): Only call get_memory_write_packet_size once.
165 Robustify packet size calculation for very small packets. Check
166 that at least one byte will be written.
167
168 * tracepoint.c (target_is_remote): Allow extended-remote.
169 (struct collection_list): Allow 256 registers, like the comment
170 said.
171 (add_memrange): Fix comment.
172 (read_actions): Turn EOF into 'end'.
173
174 2005-03-08 Corinna Vinschen <vinschen@redhat.com>
175
176 * Makefile.in: Add dependencies for iq2000-tdep.o.
177 * configure.tgt: Add iq2000-*-* target.
178 * iq2000-tdep.c: New file.
179 * config/iq2000/iq2000.mt: New file.
180
181 2005-03-07 Joel Brobecker <brobecker@adacore.com>
182
183 * doc/observer.texi (executable_changed): New observer.
184 * symtab.c: Include "observer.h".
185 (find_main_name): New function.
186 (main_name): If name_of_main is unset, then compute it
187 using find_main_name.
188 (symtab_observer_executable_changed): New function.
189 (_initialize_symtab): Attach executable_changed observer.
190 * exec.c: Include "observer.h".
191 (exec_file_attach): Emit executable_changed notification.
192 * symfile.c: Include "observer.h".
193 (reread_symbols): Send an executable_changed if appropriate.
194 * Makefile.in (exec.o): Add dependency on observer.h.
195 (symfile.o): Likewise.
196 (symtab.o): Likewise.
197
198 2005-03-07 Daniel Jacobowitz <dan@codesourcery.com>
199
200 * findvar.c (read_var_value): Don't allocate V when it will not
201 be used. Add missing break for LOC_INDIRECT.
202
203 2005-03-06 Mark Kettenis <kettenis@gnu.org>
204
205 * sparc64fbsd-tdep.c: Include "solib-svr4.h".
206 (sparc64fbsd_init_abi): Set skip_trampoline_code and
207 solib_svr4_fetch_link_map_offsets.
208 * Makefile.in (sparc64fbsd-tdep.o): Update dependencies.
209
210 2005-03-06 Daniel Jacobowitz <dan@codesourcery.com>
211
212 * linux-nat.c (child_follow_fork): Call target_terminal_ours before
213 printing output. Use fprintf_unfiltered. Only print output when
214 debugging.
215
216 2005-03-05 Mark Kettenis <kettenis@gnu.org>
217
218 * sparc64-tdep.c (sparc64_store_floating_fields): Constify third
219 argument.
220 (sparc64_store_arguments): Constify.
221
222 2005-03-05 Mark Kettenis <kettenis@gnu.org>
223
224 * alphabsd-nat.c: Update copyright year. Include "inf-ptrace.h".
225 (alphabsd_fetch_inferior_registers): Rename from
226 fetch_inferior_registers. Make static.
227 (alphabsd_store_inferior_registers): Rename from
228 store_inferior_registers. Make static.
229 (_initialize_alphabsd_nat): New function.
230 * Makefile.in (alphabsd-nat.o): Update dependencies.
231 * config/alpha/fbsd.mh (NATDEPFILES): Remove infptrace.o and
232 inftarg.o. Add inf-ptrace.o, fbsd-nat.o and gcore.o.
233 * config/alpha/nbsd.mh (NAT_CLIBS): Remove variable.
234 (NATDEPFILES): Remove infptrace.o and inftarg.o. Add
235 alphabsd-nat.o.
236 * config/alpha/nm-fbsd.h: Update copyright year. Don't include
237 "config/nm-bsd.h" and "elf/common.h".
238 * config/alpha/nm-nbsd.h: Update copyright year. Don't include
239 "config/nm-nbsd.h".
240
241 * mips64obsd-tdep.c (mips64obsd_init_abi): Don't set
242 software_single_step.
243
244 2005-03-04 Michael Snyder <msnyder@redhat.com>
245
246 * mn10300-prologue.c: New file. Prologue analysis.
247 * mn10300-tdep.c: Move REGNUM values to mn10300-tdep.h.
248 (mn10300_frame_unwind_cache): Don't call trad_frame_set_id
249 until after analyze_prologue, and don't call trad_frame_set_base
250 at all (let analyze_prologue do it).
251
252 2005-03-04 Michael Snyder <msnyder@redhat.com>
253
254 * trad-frame.c (trad_frame_set_reg_value): New function.
255 * trad-frame.h (trad_frame_set_reg_value): Export.
256
257 2005-03-04 Daniel Jacobowitz <dan@codesourcery.com>
258
259 * Makefile.in (remote.o): Update dependencies.
260 * remote.c: Include "observer.h".
261
262 2005-03-04 Daniel Jacobowitz <dan@codesourcery.com>
263
264 * target.c (target_read_memory_partial): Always initialize
265 ERR.
266 (target_write_memory_partial): Likewise.
267
268 2005-03-03 Daniel Jacobowitz <dan@codesourcery.com>
269
270 * remote.c (remote_open_1): Call observer_notify_inferior_created.
271
272 2005-03-03 Daniel Jacobowitz <dan@codesourcery.com>
273
274 * arm-tdep.c (arm_make_stub_cache, arm_stub_this_id)
275 (arm_stub_unwind, arm_stub_unwind_sniffer): New.
276 (arm_gdbarch_init): Add arm_stub_unwind_sniffer.
277
278 2005-03-02 Daniel Jacobowitz <dan@codesourcery.com>
279
280 * linux-nat.c (linux_supports_tracevforkdone, child_follow_fork):
281 Use LWP IDs.
282
283 2005-02-28 Daniel Jacobowitz <dan@codesourcery.com>
284
285 * dwarf2loc.c (loclist_read_variable): Set optimized_out
286 instead of reporting an error.
287 * valprint.c (value_check_printable): New function.
288 (common_val_print): New function. Use value_check_printable.
289 (value_print): Use value_check_printable.
290 * value.h (common_val_print): Add prototype.
291
292 * c-valprint.c (c_val_print): Use common_val_print.
293 * cp-valprint.c (cp_print_value_fields): Likewise.
294 (cp_print_hpacc_virtual_table_entries): Likewise.
295 * f-valprint.c (f_val_print): Likewise.
296 * jv-valprint.c (java_value_print, java_print_value_fields):
297 Likewise.
298 * scm-valprint.c (scm_value_print): Likewise.
299 * stack.c (print_frame_args): Likewise.
300 * varobj.c (c_value_of_variable): Likewise.
301 * p-valprint.c (pascal_val_print, pascal_value_print): Likewise.
302 (pascal_object_print_value_fields): Likewise. Update call to
303 pascal_object_print_static_field.
304 (pascal_object_print_static_field): Remove TYPE argument. Use
305 common_val_print.
306
307 2005-02-25 Mark Kettenis <kettenis@gnu.org>
308
309 Committed by Elena Zannoni <ezannoni@redhat.com>
310
311 * dwarf2read.c (dwarf2_build_psymtabs_hard): Adjust
312 info_ptr before building psymtabs for included files.
313 (create_all_comp_units): Initailize initial length size of
314 compilation header to zero.
315 (read_initial_length): Complain if both 32-bit and 64-bit DWARF
316 sections are encountered within the same compilation header.
317 (dwarf_decode_line_header): Pass compilation header in call to
318 read_initial_length.
319
320 2005-02-24 Andrew Cagney <cagney@gnu.org>
321
322 Add show_VARIABLE functions, update add_setshow call.
323 * varobj.c (_initialize_varobj, show_varobjdebug): Add and update.
324 * valprint.c (_initialize_valprint, show_print_max)
325 (show_stop_print_at_null, show_repeat_count_threshold)
326 (show_prettyprint_structs, show_unionprint)
327 (show_prettyprint_arrays, show_addressprint, show_input_radix)
328 (show_output_radix): Ditto.
329 * valops.c (_initialize_valops, show_overload_resolution): Ditto.
330 * utils.c (initialize_utils, show_chars_per_line)
331 (show_lines_per_page, show_demangle, show_pagination_enabled)
332 (show_sevenbit_strings, show_asm_demangle): Ditto
333 * tui/tui-win.c (_initialize_tui_win, show_tui_border_kind)
334 (show_tui_border_mode, show_tui_active_border_mode): Ditto.
335 * top.c (init_main, show_new_async_prompt)
336 (show_async_command_editing_p, show_write_history_p)
337 (show_history_size, show_history_filename, show_caution)
338 (show_annotation_level, init_main): Ditto.
339 * target.c (initialize_targets, show_targetdebug)
340 (show_trust_readonly): Ditto.
341 * symfile.c (_initialize_symfile, show_symbol_reloading)
342 (show_ext_args, show_download_write_size)
343 (show_debug_file_directory): Ditto.
344 * source.c (_initialize_source, show_lines_to_list): Ditto.
345 * solib.c (_initialize_solib, show_auto_solib_add)
346 (show_solib_search_path): Ditto.
347 * p-valprint.c (_initialize_pascal_valprint)
348 (show_pascal_static_field_print): Ditto.
349 * printcmd.c (_initialize_printcmd, show_max_symbolic_offset)
350 (show_print_symbol_filename): Add and update.
351 * parse.c (_initialize_parse, show_expressiondebug): Dito.
352 * observer.c (_initialize_observer, show_observer_debug): Dito.
353 * maint.c (_initialize_maint_cmds, show_watchdog)
354 (show_maintenance_profile_p): Dito.
355 * linux-nat.c (_initialize_linux_nat, show_debug_linux_nat): Dito.
356 * infrun.c (_initialize_infrun, show_debug_infrun)
357 (show_stop_on_solib_events, show_follow_fork_mode_string)
358 (show_scheduler_mode, show_step_stop_if_no_debug): Ditto.
359 * infcall.c (_initialize_infcall, show_coerce_float_to_double_p)
360 (show_unwind_on_signal_p): Ditto.
361 * gdbtypes.c (build_gdbtypes, show_opaque_type_resolution)
362 (_initialize_gdbtypes, show_overload_debug): Ditto.
363 * gdb-events.c, gdb-events.sh (_initialize_gdb_events)
364 (show_gdb_events_debug): Ditto.
365 * gdbarch.c, gdbarch.sh (show_gdbarch_debug)
366 (_initialize_gdbarch): Ditto.
367 * frame.c (_initialize_frame, show_backtrace_past_main)
368 (show_backtrace_past_entry, show_backtrace_limit)
369 (show_frame_debug): Ditto.
370 * exec.c (_initialize_exec, show_write_files): Ditto.
371 * dwarf2read.c (_initialize_dwarf2_read)
372 (show_dwarf2_max_cache_age): Ditto.
373 * demangle.c (_initialize_demangler)
374 (show_demangling_style_names): Ditto.
375 * dcache.c (_initialize_dcache, show_dcache_enabled_p): Ditto.
376 * cp-valprint.c (show_static_field_print)
377 (_initialize_cp_valprint, show_vtblprint, show_objectprint): Ditto.
378 * corefile.c (_initialize_core, show_gnutarget_string): Ditto.
379 * cli/cli-logging.c (_initialize_cli_logging)
380 (show_logging_overwrite, show_logging_redirect)
381 (show_logging_filename): Ditto.
382 * cli/cli-cmds.c (show_info_verbose, show_history_expansion_p)
383 (init_cli_cmds, show_baud_rate, show_remote_debug)
384 (show_remote_timeout, show_max_user_call_depth): Ditto.
385 * charset.c (show_host_charset_name, show_target_charset_name)
386 (initialize_charset): Ditto.
387 * breakpoint.c (show_can_use_hw_watchpoints)
388 (show_pending_break_support, _initialize_breakpoint): Ditto.
389
390 2005-02-23 Jim Blandy <jimb@redhat.com>
391
392 * disasm.c (gdb_disassemble_info): Call disassemble_init_for_target.
393
394 2005-02-23 Andrew Cagney <cagney@gnu.org>
395
396 * cli/cli-dump.c (dump_bfd_file): Replace magic constant with
397 SEC_XXX flags.
398
399 2005-02-22 Andrew Cagney <cagney@gnu.org>
400
401 * configure.ac: Only enaable insight when itcl is present.
402 * configure: Re-generate.
403
404 2005-02-21 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
405
406 Committed by Andrew Cagney.
407 * infptrace.c (store_register): Fix typo.
408
409 2005-02-21 Andrew Cagney <cagney@gnu.org>
410
411 * command.h (deprecated_add_set_cmd): Rename add_set_cmd.
412 * cli/cli-decode.h (add_set_cmd): Delete declaration.
413 * cli/cli-decode.c (deprecated_add_set_cmd): Rename add_set_cmd.
414 * i386-nat.c (_initialize_i386_nat): Update call.
415 * valprint.c (_initialize_valprint): Update comment.
416 * gnu-nat.c (_initialize_gnu_nat): Update call.
417
418 2005-02-21 Alan Modra <amodra@bigpond.net.au>
419
420 * elfread.c (elf_symtab_read): Discard section syms.
421
422 2005-02-21 Andrew Cagney <cagney@gnu.org>
423
424 * cli/cli-decode.c (add_set_enum_cmd): Delete function.
425 (deprecated_add_show_from_set): Delete function.
426 * command.h (add_set_enum_cmd): Delete declaration.
427 (deprecated_add_show_from_set): Delete declaration.
428 * cli/cli-decode.h (add_set_enum_cmd): Delete declaration.
429 (deprecated_add_show_from_set): Delete declaration.
430 * arm-tdep.c (_initialize_arm_tdep): Update comment.
431 * kod.c (kod_set_os): Simplify.
432 * infrun.c (set_schedlock_func): Simplify.
433 * cli/cli-dump.c (add_dump_command): Update comment.
434
435 Replace string variables with a filename completer with
436 add_setshow_optional_filename_cmd.
437 * solib.c, symfile.c: Update.
438 * cli/cli-setshow.c: Do not tidle expand the file.
439
440 Add more uses of add_setshow_string_cmd, add_setshow_integer_cmd,
441 and add_setshow_string_noescape_cmd.
442 * cli/cli-setshow.c (deprecated_show_value_hack): Do not print a
443 NULL command's value.
444 * kod.c, language.c, ocd.c, remote-e7000.c, remote-mips.c: Update.
445 * remote-sds.c, remote.c, symfile.c, top.c: Update.
446
447 2005-02-20 Andrew Cagney <cagney@gnu.org>
448
449 Use add_setshow_enum_cmd through out.
450 * arch-utils.c, charset.c, demangle.c, i386-tdep.c: Update.
451 * infrun.c, mips-tdep.c, osabi.c, serial.c, tui/tui-win.c: Update.
452
453 * mi/mi-main.c (captured_mi_execute_command): Use
454 mi_cmd_interpreter_exec.
455
456 * cli/cli-decode.c (add_setshow_optional_filename_cmd): New
457 function.
458 * cli/cli-setshow.c (deprecated_show_value_hack)
459 (do_setshow_command): Handle var_optional_filename.
460 * command.h (enum var_types): Add var_optional_filename.
461 (add_setshow_optional_filename_cmd): Declare.
462 * infcmd.c (notice_args_read): Use.
463
464 * symfile-mem.c (symbol_file_add_from_memory): Pass
465 target_read_memory to bfd_elf_bfd_from_remote_memory.
466 (do_target_read_memory): Delete.
467
468 2005-02-16 Mark Kettenis <kettenis@gnu.org>
469
470 * value.h (value_contents_equal): New prototype.
471 * value.c (value_contents_equal): New function.
472 * varobj.c: Include "exceptions.h" and "gdb_assert.h". Don't
473 include <math.h>.
474 (varobj_set_value): Initialize error to zero.
475 (varobj_update): Rename error2 to error and initialize it to zero.
476 Slightly change the wording of some comments.
477 (my_value_equal): Reimplement using TRY_CATCH and
478 value_contents_equal.
479
480 2005-02-18 Andrew Cagney <cagney@gnu.org>
481
482 * cli/cli-decode.c (add_setshow_integer_cmd): New function.
483 * command.h (add_setshow_integer_cmd): Declare.
484 * cli/cli-cmds.c: Update.
485
486 Use add_setshow_uinteger_cmd through out.
487 * printcmd.c, source.c, utils.c, valprint.c: Update.
488
489 Use add_setshow_zinteger_cmd through out. Re-sync gdbarch.sh
490 and gdbarch.c.
491 * breakpoint.c, frame.c, gdb-events.sh, gdbarch.sh: Update.
492 * gdbtypes.c, infrun.c, linux-nat.c, maint.c, monitor.c: Update.
493 * pa64solib.c, parse.c, remote-mips.c, ser-go32.c: Update.
494 * serial.c, solib-frv.c, somsolib.c, target.c, top.c: Update.
495 * varobj.c, cli/cli-cmds.c: Update.
496 * gdbarch.c, gdb-events.c: Regenerate.
497
498 Use add_setshow_boolean_command through out. Delete #ifdef 0'ed
499 code adding set/show boolean commands.
500 * cp-valprint.c, dcache.c, exec.c, gdbtypes.c, infrun.c: Update.
501 * monitor.c, p-valprint.c, pa64solib.c, printcmd.c: Update.
502 * proc-api.c, remote-mips.c, remote.c, solib.c: Update.
503 * somsolib.c, symfile.c, top.c, utils.c, valops.c: Update.
504 * valprint.c, win32-nat.c, wince.c, xcoffsolib.c: Update.
505 * cli/cli-cmds.c: Update.
506
507 2005-02-17 Andrew Cagney <cagney@gnu.org>
508
509 * cli/cli-decode.c (add_setshow_filename_cmd): Set the completer
510 to filename_completer.
511 * solib.c (_initialize_solib, reload_shared_libraries): Use
512 add_setshow_filename_cmd.
513 * serial.c (_initialize_serial): Ditto.
514 * remote-utils.c (_initialize_sr_support): Ditto.
515
516 * cli/cli-decode.c (add_setshow_string_noescape_cmd): New function.
517 * command.h (add_setshow_string_noescape_cmd): Declare.
518 * wince.c (_initialize_wince): Use.
519 * symfile.c (_initialize_symfile): Use.
520 (set_ext_lang_command): Update declaration.
521 * corefile.c (_initialize_core): Use.
522
523 * cli/cli-decode.c (add_setshow_cmd_full, add_setshow_enum_cmd)
524 (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
525 (add_setshow_filename_cmd, add_setshow_string_cmd)
526 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd): Delete
527 fprint_setshow parameter.
528 * command.h (fprint_setshow_ftype): Delete.
529 (add_setshow_cmd_full, add_setshow_enum_cmd)
530 (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
531 (add_setshow_filename_cmd, add_setshow_string_cmd)
532 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd): Delete
533 fprint_setshow parameter.
534 * aix-thread.c, alpha-tdep.c, arm-tdep.c, breakpoint.c: Update.
535 * complaints.c, cris-tdep.c, dwarf2read.c, frame.c: Update.
536 * hppa-tdep.c, infcall.c, m32r-rom.c, maint.c: Update.
537 * mips-tdep.c, nto-tdep.c, observer.c, remote-rdi.c: Update
538 * remote.c, target.c, cli/cli-logging.c: Update.
539
540 2005-02-16 Andrew Cagney <cagney@gnu.org>
541
542 Merge setshow print and show parameters.
543 * command.h (show_value_ftype): Define.
544 (deprecated_show_value_hack): Declare.
545 (add_setshow_enum_cmd, add_setshow_auto_boolean_cmd)
546 (add_setshow_boolean_cmd, add_setshow_filename_cmd)
547 (add_setshow_string_cmd, add_setshow_uinteger_cmd)
548 (add_setshow_zinteger_cmd): Change type of show_func to
549 show_value_ftype.
550 * cli/cli-decode.h (struct cmd_list_element): Replace
551 fprint_setshow with show_value_func.
552 * cli/cli-decode.c (add_setshow_cmd_full): Update show_func
553 parameter. Set show_value_func. Do not set cmd_sfunc.
554 (add_setshow_enum_cmd, add_setshow_auto_boolean_cmd)
555 (add_setshow_boolean_cmd, add_setshow_filename_cmd)
556 (add_setshow_string_cmd, add_setshow_uinteger_cmd)
557 (add_setshow_zinteger_cmd): Update.
558 * complaints.c (complaints_show_value): Replace
559 fprint_setshow_complaints.
560 (_initialize_complaints): Update.
561 * mips-tdep.c (show_mask_address): Update.
562 * arm-tdep.c (show_fp_model): Update.
563 * cli/cli-setshow.c (do_setshow_command): Call show_value_func
564 instead of fprint_setshow. Use deprecated_show_value_hack.
565 (deprecated_show_value_hack): New function.
566 * remote.c (add_packet_config_cmd, show_remote_cmd):
567 (show_remote_protocol_P_packet_cmd)
568 (show_remote_protocol_P_packet_cmd)
569 (show_remote_protocol_Z_access_wp_packet_cmd)
570 (show_remote_protocol_Z_hardware_bp_packet_cmd)
571 (show_remote_protocol_Z_packet_cmd)
572 (show_remote_protocol_Z_read_wp_packet_cmd)
573 (show_remote_protocol_Z_software_bp_packet_cmd)
574 (show_remote_protocol_Z_write_wp_packet_cmd)
575 (show_remote_protocol_binary_download_cmd)
576 (show_remote_protocol_p_packet_cmd)
577 (show_remote_protocol_qPart_auxv_packet_cmd)
578 (show_remote_protocol_qSymbol_packet_cmd)
579 (show_remote_protocol_vcont_packet_cmd): Update.
580
581 2005-02-16 Mark Kettenis <kettenis@gnu.org>
582
583 * wrapper.h: Update copyright year. Properly wrap a few
584 prototypes.
585 (struct gdb_wrapper_arguments): Remove forward declaration.
586 * wrapper.c: Update copyright year. Include "ui-out.h".
587 (struct gdb_wrapper_arguments): Remove.
588 (struct captured_value_struct_elt_args): Remove.
589 (wrapper_parse_exp_1, wrap_evaluate_expression)
590 (wrap_value_fetch_lazy, wrap_value_equal, wrap_value_assign)
591 (wrap_value_subscript, wrap_value_ind, wrap_parse_and_eval_type)
592 (do_captured_value_struct_elf): Remove functions.
593 (gdb_parse_exp_1, gdb_evaluate_expression, gdb_value_fetch_lazy)
594 (gdb_value_equal, gdb_value_assign, gdb_value_subscript)
595 (gdb_value_ind, gdb_parse_and_eval_type, gdb_value_struct_elt):
596 Re-implement using TRY_CATCH.
597
598 2005-02-16 Yoshinori Sato <ysato@users.sourceforge.jp>
599
600 * remote-e7000.c: unuse TM_FILE defined macro.
601 (e7000_fetch_registers)
602 (e7000_store_registers)
603 (e7000_wait): delete NUM_REALREGS.
604 * remote-hms.c: move TM_FILE macro.
605 (CCR_REGNO): move define from tm-h8300.h.
606
607 2005-02-15 Mark Kettenis <kettenis@gnu.org>
608
609 * amd64-linux-tdep.c: Update copyright year.
610 (amd64_linux_sigtramp_start): Use sizeof operator instead of
611 LINUX_SIGTRAMP_LEN.
612
613 2004-02-15 Joel Brobecker <brobecker@gnat.com>
614
615 From Paul Hilfinger <hilfinger@gnat.com>
616 * dwarf2read.c (new_symbol): Use SYMBOL_SEARCH_NAME rather than
617 SYMBOL_NATURAL_NAME to set type names.
618
619 2005-02-15 Andrew Cagney <cagney@gnu.org>
620
621 Mark up add_com, add_info and add_prefix_cmd.
622 * breakpoint.c, cp-support.c, dcache.c, dwarf2read.c: Update.
623 * exec.c, f-valprint.c, frame.c, gcore.c, gnu-nat.c: Update.
624 * go32-nat.c, infcmd.c, inflow.c, infptrace.c, infrun.c: Update.
625 * kod.c, language.c, linux-nat.c, m32r-rom.c, macrocmd.c: Update.
626 * maint.c, memattr.c, mips-tdep.c, nto-procfs.c, objc-lang.c: Update.
627 * ocd.c, pa64solib.c, printcmd.c, procfs.c, regcache.c: Update.
628 * remote-e7000.c, remote-m32r-sdi.c, remote-mips.c: Update.
629 * remote-sds.c, remote-sim.c, remote-st.c, remote-utils.c: Update.
630 * remote.c, rs6000-tdep.c, ser-go32.c, serial.c: Update.
631 * sh-tdep.c, solib.c, somsolib.c, source.c, stack.c: Update.
632 * symfile.c, symtab.c, target.c, thread.c, top.c: Update.
633 * tracepoint.c, typeprint.c, utils.c, valprint.c: Update.
634 * win32-nat.c, xcoffsolib.c, cli/cli-cmds.c, cli/cli-dump.c: Update.
635 * cli/cli-logging.c, tui/tui-layout.c, tui/tui-regs.c: Update.
636 * tui/tui-stack.c, tui/tui-win.c: Update.
637
638 2005-02-14 Andrew Cagney <cagney@gnu.org>
639
640 * config/h8300/h8300.mt (DEPRECATED_TM_FILE): Delete.
641 * config/h8300/tm-h8300.h: Delete file.
642
643 Mark up add_cmd.
644 * arch-utils.c, avr-tdep.c, breakpoint.c, corefile.c: Update.
645 * cp-abi.c, cp-namespace.c, cp-support.c, dummy-frame.c: Update.
646 * exec.c, gnu-nat.c, go32-nat.c, hppa-tdep.c, infcmd.c: Update.
647 * infrun.c, interps.c, macrocmd.c, maint.c, memattr.c: Update.
648 * mips-tdep.c, ocd.c, osabi.c, printcmd.c, regcache.c: Update.
649 * reggroups.c, remote-fileio.c, remote-rdi.c, remote.c: Update.
650 * sol-thread.c, source.c, stack.c, symfile-mem.c: Update.
651 * symfile.c, thread.c, tracepoint.c, valprint.c, value.c: Update.
652 * win32-nat.c, cli/cli-cmds.c, cli/cli-dump.c: Update.
653 * cli/cli-logging.c, tui/tui-regs.c: Update.
654
655 Mark up add_setshow functions, replace "PRINT:" comment prefix
656 with "FIXME: i18n:".
657 * aix-thread.c, alpha-tdep.c, arm-tdep.c, breakpoint.c: Update.
658 * cris-tdep.c, dwarf2read.c, frame.c, hppa-tdep.c: Update.
659 * infcall.c, m32r-rom.c, maint.c, mips-tdep.c: Update.
660 * nto-tdep.c, observer.c, remote-rdi.c, remote.c: Update.
661 * target.c, cli/cli-logging.c: Update.
662
663 * utils.c (paddress): New function.
664 * defs.h (paddress): Declare.
665 * printcmd.c (deprecated_print_address_numeric): Rename
666 print_address_numeric, call paddress.
667 * valprint.c, ui-out.c, tui/tui-stack.c, tracepoint.c: Update.
668 * symmisc.c, symfile.c stack.c, p-valprint.c, printcmd.c: Update.
669 * maint.c, m32r-rom.c, infcmd.c, f-valprint.c, exec.c: Update.
670 * dwarf2read.c, dve3900-rom.c, defs.h, c-valprint.c: Update.
671 * corefile.c, cli/cli-cmds.c, breakpoint.c, annotate.c: Update.
672 * ada-valprint.c: Update.
673
674 2005-02-13 Ramana Radhakrishnan <ramana.radhakrishnan@codito.com>
675
676 * MAINTAINERS: Add myself to "Write After Approval".
677
678 2005-02-12 Yoshinori Sato <ysato@users.sourceforge.jp>
679
680 Restore h8300 support.
681 * configure.tgt: Add h8300-*-*
682 * h8300-tdep.c: New file. Rewrite new frame code.
683 * config/h8300/h8300.mt: New file. Restored Rev 1.3
684 * config/h8300/tm-h8300.h: New file. Restored Rev 1.21
685
686 * MAINTAINERS: Add myself to "Write After Approval".
687
688 2005-02-11 Andrew Cagney <cagney@gnu.org>
689
690 Mark up some of printf_filtered and printf_unfiltered.
691 * ada-lang.c, annotate.c, arch-utils.c, breakpoint.c: Update.
692 * corelow.c, cp-namespace.c, cp-support.c, dcache.c: Update.
693 * demangle.c, dsrec.c, dwarf2read.c, dwarfread.c: Update.
694 * event-loop.c, event-top.c, exec.c, f-valprint.c: Update.
695 * gdbtypes.c, inf-loop.c, inf-ptrace.c, inf-ttrace.c: Update.
696 * infcmd.c, inflow.c, infrun.c, inftarg.c, language.c: Update.
697 * linespec.c, linux-nat.c, linux-thread-db.c, maint.c: Update.
698 * mdebugread.c, memattr.c, monitor.c, objc-lang.c: Update.
699 * ocd.c, osabi.c, printcmd.c, procfs.c, regcache.c: Update.
700 * remote.c, solib-som.c, solib.c, somsolib.c, source.c: Update.
701 * stack.c, symfile.c, symmisc.c, target.c, thread.c: Update.
702 * top.c, utils.c, valprint.c, value.c, cli/cli-cmds.c: Update.
703 * cli/cli-dump.c, cli/cli-logging.c, tui/tui-hooks.c: Update.
704 * tui/tui-regs.c, tui/tui-win.c: Update.
705
706 Mark up error_no_arg, query, perror_with_name, complaint, and
707 internal_error.
708 * breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
709 * cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
710 * dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
711 * dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
712 * exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
713 * frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
714 * gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
715 * go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
716 * i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
717 * i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
718 * infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
719 * interps.c, language.c, linespec.c, linux-nat.c: Update.
720 * m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
721 * m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
722 * macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
723 * mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
724 * mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
725 * objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
726 * parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
727 * ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
728 * regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
729 * remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
730 * remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
731 * s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
732 * sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
733 * solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
734 * sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
735 * symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
736 * utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
737 * win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
738 * cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
739 * cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
740 * mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
741 * tui/tui-file.c, tui/tui-interp.c: Update.
742
743 2005-02-10 Andrew Cagney <cagney@gnu.org>
744
745 Mark up all error and warning messages.
746 * ada-lang.c, amd64-tdep.c, arch-utils.c, breakpoint.c: Update.
747 * bsd-kvm.c, bsd-uthread.c, coff-solib.h, coffread.c: Update.
748 * core-aout.c, core-regset.c, corefile.c, corelow.c: Update.
749 * cp-abi.c, cp-support.c, cp-valprint.c, cris-tdep.c: Update.
750 * dbxread.c, demangle.c, doublest.c, dsrec.c: Update.
751 * dve3900-rom.c, dwarf2expr.c, dwarf2loc.c: Update.
752 * dwarf2read.c, dwarfread.c, elfread.c, eval.c: Update.
753 * event-top.c, exec.c, expprint.c, f-lang.c: Update.
754 * f-typeprint.c, f-valprint.c, fbsd-nat.c, findvar.c: Update.
755 * frame.c, frv-linux-tdep.c, gcore.c, gdbtypes.c: Update.
756 * gnu-nat.c, gnu-v2-abi.c, gnu-v3-abi.c, go32-nat.c: Update.
757 * hpacc-abi.c, hppa-hpux-nat.c, hppa-hpux-tdep.c: Update.
758 * hppa-linux-nat.c, hppa-linux-tdep.c, hppa-tdep.c: Update.
759 * hpread.c, hpux-thread.c, i386-linux-nat.c: Update.
760 * i386-linux-tdep.c, i386-tdep.c, i386bsd-nat.c: Update.
761 * i386gnu-nat.c, i387-tdep.c, ia64-linux-nat.c: Update.
762 * ia64-tdep.c, inf-child.c, inf-ptrace.c, inf-ttrace.c: Update.
763 * infcall.c, infcmd.c, inflow.c, infptrace.c, infrun.c: Update.
764 * inftarg.c, interps.c, irix5-nat.c, jv-lang.c: Update.
765 * kod-cisco.c, kod.c, language.c, libunwind-frame.c: Update.
766 * linespec.c, linux-nat.c, linux-thread-db.c, m2-lang.c: Update.
767 * m32r-rom.c, m68hc11-tdep.c, m68k-tdep.c: Update.
768 * m68klinux-nat.c, macrocmd.c, macroexp.c, main.c: Update.
769 * maint.c, mdebugread.c, mem-break.c, memattr.c: Update.
770 * mips-linux-tdep.c, mips-tdep.c, mipsread.c, monitor.c: Update.
771 * nlmread.c, nto-procfs.c, objc-lang.c, objfiles.c: Update.
772 * observer.c, ocd.c, p-lang.c, p-typeprint.c: Update.
773 * p-valprint.c, pa64solib.c, parse.c, ppc-linux-tdep.c: Update.
774 * ppcnbsd-tdep.c, printcmd.c, procfs.c, remote-e7000.c: Update.
775 * remote-fileio.c, remote-m32r-sdi.c, remote-rdi.c: Update.
776 * remote-rdp.c, remote-sim.c, remote-st.c: Update.
777 * remote-utils.c, remote-utils.h, remote.c: Update.
778 * rom68k-rom.c, rs6000-nat.c, s390-tdep.c, scm-lang.c: Update.
779 * ser-e7kpc.c, ser-tcp.c, ser-unix.c, sh-tdep.c: Update.
780 * sh3-rom.c, shnbsd-tdep.c, sol-thread.c, solib-aix5.c: Update.
781 * solib-frv.c, solib-irix.c, solib-osf.c, solib-pa64.c: Update.
782 * solib-som.c, solib-sunos.c, solib-svr4.c, solib.c: Update.
783 * somread.c, somsolib.c, source.c, stabsread.c: Update.
784 * stack.c, std-regs.c, symfile-mem.c, symfile.c: Update.
785 * symmisc.c, symtab.c, target.c, thread.c, top.c: Update.
786 * tracepoint.c, trad-frame.c, typeprint.c, utils.c: Update.
787 * uw-thread.c, valarith.c, valops.c, valprint.c: Update.
788 * value.c, varobj.c, version.in, win32-nat.c, wince.c: Update.
789 * xcoffread.c, xcoffsolib.c, cli/cli-cmds.c: Update.
790 * cli/cli-decode.c, cli/cli-dump.c, cli/cli-logging.c: Update.
791 * cli/cli-script.c, cli/cli-setshow.c, mi/mi-cmd-break.c: Update.
792 * mi/mi-cmd-disas.c, mi/mi-cmd-env.c, mi/mi-cmd-file.c: Update.
793 * mi/mi-cmd-stack.c, mi/mi-cmd-var.c, mi/mi-getopt.c: Update.
794 * mi/mi-symbol-cmds.c, tui/tui-layout.c, tui/tui-stack.c: Update.
795 * tui/tui-win.c: Update.
796
797 2005-02-10 Ian Lance Taylor <ian@airs.com>
798
799 * MAINTAINERS: Update my e-mail address.
800
801 2005-02-10 Daniel Jacobowitz <dan@debian.org>
802
803 From Ramana Radhakrishnan <ramana.radhakrishnan@codito.com>:
804 PR exp/1821
805 * cp-valprint.c: Include "language.h".
806 (cp_print_value_fields): Pass the current language to
807 fprintf_symbol_filtered.
808 * Makefile.in (cp-valprint.o): Update dependencies.
809
810 2005-02-10 Andrew Cagney <cagney@gnu.org>
811
812 * cli/cli-decode.c (add_setshow_enum_cmd, add_setshow_cmd_full)
813 (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
814 (add_setshow_filename_cmd, add_setshow_string_cmd)
815 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd): Replace
816 print string parameter with fprint_setshow function.
817 * command.h (fprint_setshow_ftype): Define. Update declarations.
818 * cli/cli-setshow.c (do_setshow_command): When fprint_setshow is
819 available, use that.
820 * cli/cli-decode.h (struct cmd_list_element): Add field
821 fprint_setshow.
822 * complaints.c (fprint_setshow_complaints): New function.
823 (_initialize_complaints): Pass to add_setshow_zinteger_cmd.
824 * hppa-tdep.c (_initialize_hppa_tdep): Replace "print" parameter
825 with NULL.
826 * mips-tdep.c (_initialize_mips_tdep): Ditto.
827 * m32r-rom.c (_initialize_m32r_rom): Ditto.
828 * cris-tdep.c (_initialize_cris_tdep): Ditto.
829 * arm-tdep.c (_initialize_arm_tdep): Ditto.
830 * remote-rdi.c (_initialize_remote_rdi): Ditto.
831 * alpha-tdep.c (_initialize_alpha_tdep): Ditto.
832 * dwarf2read.c (_initialize_dwarf2_read): Ditto.
833 * frame.c (_initialize_frame): Ditto.
834 * target.c (initialize_targets): Ditto.
835 * maint.c (_initialize_maint_cmds): Ditto.
836 * observer.c (_initialize_observer): Ditto.
837 * infcall.c (_initialize_infcall): Ditto.
838 * breakpoint.c (_initialize_breakpoint): Ditto.
839 * cli/cli-logging.c (_initialize_cli_logging): Ditto.
840 * remote.c (add_packet_config_cmd, _initialize_remote): Ditto.
841
842 * cli/cli-setshow.c (do_setshow_command): Move code printing the
843 value to the end of the function. Handle MI and non-MI output
844 differently.
845
846 2005-02-09 Andrew Cagney <cagney@gnu.org>
847
848 * cli/cli-decode.c (add_setshow_enum_cmd): Drop set_result and
849 show_result parameters.
850 * mips-tdep.c (_initialize_mips_tdep): Update calls.
851 * command.h: Update declaration.
852 * arm-tdep.c (_initialize_arm_tdep, _initialize_arm_tdep): Update
853 calls.
854
855 * NEWS: Mention removed commands.
856 * m68hc11-tdep.c (show_regs): Delete, unused.
857 (_initialize_m68hc11_tdep): Delete deprecated "regs" command.
858 * gdb-events.sh: Delete deprecated "set eventdebug" and "show
859 eventdebug" commands.
860 * gdb-events.c: Regenerate.
861 * gdbarch.sh: Delete deprecated "set archdebug" and "show
862 archdebug" commands.
863 * gdbarch.c: Regenerate.
864 * cli/cli-cmds.c (init_cli_cmds): Delete deprecated "set
865 remotedebug" and "show remotedebug".
866 * arm-tdep.c (_initialize_arm_tdep): Delete deprecated "set arm
867 disassembly-flavor", "show arm disassembly-flavor", and
868 "othernames" commands.
869 (arm_othernames): Delete unused function.
870
871 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_dummy_call)
872 (convert_code_addr_to_desc_addr): Convert any function code
873 address to the corresponding function's descriptor.
874 (ppc64_sysv_abi_return_value): have TYPE_CODE_ENUM and
875 TYPE_CODE_INT use the same code paths as TYPE_CODE_INT. When
876 writing, convert any function code address to the corresponding
877 descriptor.
878
879 * config/sh/linux.mt (TDEPFILES): Add symfile-mem.o.
880 * config/powerpc/linux.mt (TDEPFILES): Ditto.
881 * config/pa/linux.mt (TDEPFILES): Ditto.
882 * config/mips/linux.mt (TDEPFILES): Ditto.
883 * config/m68k/linux.mt (TDEPFILES): Ditto.
884 * config/m32r/linux.mt (TDEPFILES): Ditto.
885 * config/ia64/linux.mt (TDEPFILES): Ditto.
886 * config/arm/linux.mt (TDEPFILES): Ditto.
887
888 2005-02-09 Corinna Vinschen <vinschen@redhat.com>
889
890 * symmisc.c: Include gdb_stat.h.
891 (maintenance_print_msymbols): Use inode numbers to compare files.
892
893 2005-02-08 Andrew Cagney <cagney@gnu.org>
894
895 * value.h (METHOD_PTR_IS_VIRTUAL, METHOD_PTR_FROM_VOFFSET)
896 (METHOD_PTR_TO_VOFFSET): Move from here ...
897 * cp-support.h (METHOD_PTR_IS_VIRTUAL, METHOD_PTR_FROM_VOFFSET)
898 (METHOD_PTR_TO_VOFFSET): ... to here.
899 * cp-valprint.c, p-valprint.c, eval.c: Include "cp-support.h".
900 * Makefile.in: Update dependencies.
901
902 * exceptions.c: Do not include <setjmp.h>.
903 (SIGJMP_BUF, SIGSETJMP, SIGLONGJMP): Delete macros.
904 (catch_exception, catch_exceptions_with_msg, catch_errors)
905 (catch_command_errors): Use TRY_CATCH.
906 (struct catcher): Use EXCEPTIONS_SIGJMP_BUF.
907 (exceptions_state_mc_init): Rename catcher_init.
908 (exceptions_state_mc): Rename catcher_state_machine.
909 (exceptions_state_mc_action_iter)
910 (exceptions_state_mc_action_iter_1): New functions.
911 * exceptions.h: Include <setjmp.h>.
912 (EXCEPTIONS_SIGJMP_BUF, EXCEPTIONS_SIGSETJMP)
913 (EXCEPTIONS_SIGLONGJMP): Define.
914 (exceptions_state_mc_init, exceptions_state_mc_action_iter)
915 (exceptions_state_mc_action_iter_1): Declare.
916 (TRY_CATCH): Define.
917
918 * ppc-linux-tdep.c (ppc_linux_init_abi): Do not set malloc name,
919 no longer needed.
920
921 * ppc-linux-nat.c (ppc_register_u_addr): Hack around 64-bit
922 PT_FPSCR breakage.
923
924 * value.c (struct value): Move to here ...
925 * value.h (struct value): ... from here. Copy comments to
926 corresponding function declarations, re-order.
927
928 2005-02-07 Andrew Cagney <cagney@gnu.org>
929
930 * value.c (set_value_bitpos, set_value_bitsize): Define.
931 * value.h (set_value_bitpos, set_value_bitsize): Declare.
932 * ada-lang.c, valarith.c: Update.
933
934 * cp-valprint.c, c-valprint.c, infcall.c: Use value_contents or
935 value_contents_writeable, include note that there are problems.
936 * breakpoint.c, infcall.c: Use VALUE_LVAL.
937
938 * value.h (set_value_offset): Declare.
939 * value.c (set_value_offset): Declare.
940 * gnu-v2-abi.c, jv-valprint.c, valarith.c, valops.c: Update.
941 * findvar.c: Update.
942
943 * value.h (value_next): Declare.
944 * value.c (value_next): Define.
945 * breakpoint.c: Update.
946
947 * value.h (deprecated_set_value_modifiable)
948 (deprecated_value_modifiable): Declare.
949 * value.c (deprecated_set_value_modifiable): Define.
950 (deprecated_value_modifiable): Define.
951 * ada-lang.c, valops.c, breakpoint.c, tracepoint.c: Update.
952
953 * value.h (deprecated_set_value_type): Declare.
954 * value.c (deprecated_set_value_type): Define.
955 * hpacc-abi.c, gnu-v2-abi.c, cp-valprint.c: Update.
956 * c-valprint.c, jv-lang.c, objc-lang.c, ada-lang.c: Update.
957 * infcall.c, printcmd.c, valops.c, eval.c, p-exp.y: Update.
958 * ax-gdb.c, tracepoint.c: Update.
959
960 * value.h (deprecated_value_lval_hack)
961 (deprecated_value_address_hack)
962 (deprecated_value_internalvar_hack)
963 (deprecated_value_regnum_hack): Declare.
964 (VALUE_LVAL, VALUE_ADDRESS, VALUE_INTERNALVAR)
965 (VALUE_FRAME_ID, VALUE_REGNUM): Use.
966 * value.c (deprecated_value_lval_hack)
967 (deprecated_value_address_hack)
968 (deprecated_value_internalvar_hack)
969 (deprecated_value_regnum_hack): Define.
970
971 * value.h (VALUE_POINTED_TO_OFFSET): Delete.
972 (set_value_pointed_to_offset, value_pointed_to_offset): Declare.
973 * value.c (set_value_pointed_to_offset): Define
974 (value_pointed_to_offset): Define.
975 * valops.c: Update.
976
977 * value.h (VALUE_EMBEDDED_OFFSET): Delete.
978 (value_embedded_offset, set_value_embedded_offset): Declare.
979 * value.c (value_embedded_offset): Define.
980 (set_value_embedded_offset): Define.
981 * valops.c, p-valprint.c, mi/mi-main.c, hpacc-abi.c: Update.
982 * gnu-v3-abi.c, eval.c, c-valprint.c, cp-valprint.c: Update.
983 * cp-abi.h: Update.
984
985 * value.h (VALUE_LAZY): Delete
986 (set_value_lazy): Declare.
987 * value.c (set_value_lazy): Define.
988 * valops.c, valarith.c, jv-valprint.c, jv-lang.c: Update.
989 * gnu-v2-abi.c, findvar.c, dwarf2loc.c, ada-lang.c: Update.
990
991 2005-02-06 Andrew Cagney <cagney@gnu.org>
992
993 * value.h (VALUE_OPTIMIZED_OUT): Delete.
994 (value_optimized_out, set_value_optimized_out): Declare.
995 * value.c (set_value_optimized_out, value_optimized_out): Define.
996 * valprint.c, findvar.c, dwarf2loc.c: Update.
997
998 * value.c (value_contents, value_contents_writeable): New
999 functions.
1000 * value.h (VALUE_CONTENTS): Delete macro.
1001 (value_contents, value_contents_writeable): Declare.
1002 * xstormy16-tdep.c, value.c, valops.c, valarith.c: Update.
1003 * stack.c, sparc-tdep.c, sparc64-tdep.c, sh-tdep.c: Update.
1004 * sh64-tdep.c, scm-valprint.c, scm-exp.c, s390-tdep.c: Update.
1005 * rs6000-tdep.c, p-valprint.c, printcmd.c: Update.
1006 * ppc-sysv-tdep.c, mips-tdep.c, mi/mi-main.c: Update.
1007 * m88k-tdep.c, m68hc11-tdep.c, m32r-tdep.c: Update.
1008 * jv-valprint.c, ia64-tdep.c, hppa-tdep.c: Update.
1009 * hpacc-abi.c, f-valprint.c, frv-tdep.c, eval.c: Update.
1010 * c-valprint.c, cris-tdep.c, cp-valprint.c: Update.
1011 * cli/cli-dump.c, breakpoint.c, avr-tdep.c, arm-tdep.c: Update.
1012 * arm-linux-tdep.c, amd64-tdep.c, alpha-tdep.c: Update.
1013 * ada-valprint.c, ada-lang.c: Update.
1014
1015 2005-02-03 Andrew Cagney <cagney@gnu.org>
1016
1017 * utils.c (xzalloc): New function.
1018 * defs.h (XZALLOC): Use xzalloc.
1019 (xzalloc): Declare.
1020 * value.c (allocate_value): Allocate a zeroed buffer.
1021 * mdebugread.c (xzalloc): Delete.
1022
1023 2005-02-02 Andrew Cagney <cagney@gnu.org>
1024
1025 * value.h (value_lazy): Declare.
1026 * varobj.c, value.c, valops.c, valarith.c, printcmd.c: Update.
1027 * cp-valprint.c, breakpoint.c, ada-lang.c: Update.
1028
1029 * value.h (VALUE_CONTENTS_ALL): Delete.
1030 (value_contents_all): Declare.
1031 * value.c (value_contents_all): New function.
1032 * hpacc-abi.c, cp-valprint.c, valops.c, c-valprint.c: Update.
1033 * m68k-tdep.c, i386-tdep.c, infcall.c, valops.c: Update.
1034
1035 * value.c (value_enclosing_type): New function.
1036 * value.h (VALUE_ENCLOSING_TYPE): Delete.
1037 (value_enclosing_type): Declare.
1038 * xstormy16-tdep.c, vax-tdep.c, m68k-tdep.c, i386-tdep.c: Update.
1039 * gnu-v3-abi.c, hpacc-abi.c, infcall.c, valops.c: Update.
1040
1041 * value.c (value_contents_all_raw)
1042 (value_contents_raw): New functions.
1043 * value.h (VALUE_CONTENTS_ALL_RAW, VALUE_CONTENTS_RAW): Delete.
1044 (value_contents_raw, value_contents_all_raw): Declare functions.
1045 (VALUE_CONTENTS, VALUE_CONTENTS_ALL): Update.
1046 * std-regs.c, valarith.c, valops.c, eval.c: Update.
1047 * tracepoint.c, findvar.c: Update.
1048
1049 2005-02-01 Orjan Friberg <orjanf@axis.com>
1050
1051 * regformats/reg-cris.dat: New file with register definitions for CRIS.
1052 * regformats/reg-crisv32.dat: Ditto for CRISv32.
1053
1054 2005-01-31 Andrew Cagney <cagney@gnu.org>
1055
1056 * configure: Regenerate to track ../gettext.m4.
1057
1058 2005-01-29 Baurzhan Ismagulov <ibr@radix50.net>
1059
1060 * MAINTAINERS: Add myself to "Write After Approval".
1061
1062 * ax-gdb.c, ax-general.c, bcache.c, bfd-target.c, bsd-kvm.c,
1063 * buildsym.c, c-lang.c, c-typeprint.c, c-valprint.c, charset.c,
1064 * coff-pe-read.c, coffread.c, complaints.c, copying.c: I18n markup.
1065
1066 2005-01-29 Mark Kettenis <kettenis@gnu.org>
1067
1068 * configure.ac: Remove extra check for ranlib.
1069 * configure: Regenerated.
1070
1071 2005-01-28 Andrew Cagney <cagney@gnu.org>
1072
1073 * language.h (struct language_defn): Make la_val_print's buffer
1074 parameter a const bfd_byte.
1075 * cp-valprint.c (cp_print_value_fields, cp_print_value): Update.
1076 * ada-lang.c (ada_aligned_value_addr)
1077 (ada_value_primitive_packed_val, ada_which_variant_applies): Update.
1078 * valprint.c (val_print_array_elements): Update.
1079 * valprint.h (val_print_array_elements): Update.
1080 * ada-lang.h (ada_val_print, ada_aligned_value_addr)
1081 (ada_value_primitive_packed_val, ada_which_variant_applies): Update.
1082 * ada-valprint.c (ada_val_print, struct ada_val_print_args)
1083 (ada_val_print_1, ada_print_floating, printable_val_type)
1084 (print_record, val_print_packed_array_elements)
1085 (print_field_values, print_variant_part): Update.
1086 * c-lang.h (c_val_print, cp_print_value_fields): Update.
1087 * c-valprint.c (c_val_print): Update.
1088 * f-lang.h (f_val_print): Update.
1089 * f-valprint.c (f_val_print, f77_print_array_1)
1090 (f77_print_array): Update.
1091 * jv-lang.h (java_val_print): Update.
1092 * jv-valprint.c (java_print_value_fields, java_val_print): Update.
1093 * language.c (unk_lang_val_print): Update.
1094 * m2-lang.h (m2_val_print): Update.
1095 * m2-valprint.c (m2_val_print): Update.
1096 * p-lang.h (pascal_val_print): Update.
1097 (pascal_object_print_value_fields): Update.
1098 * p-valprint.c (pascal_val_print)
1099 (pascal_object_print_value_fields, pascal_object_print_value)
1100 (pascal_object_print_value): Update.
1101 * scm-lang.h (scm_val_print): Update.
1102 * scm-valprint.c (scm_val_print): Update.
1103 * value.h (val_print): Update.
1104
1105 * p-lang.h (pascal_object_print_class_member)
1106 (pascal_object_print_class_method): Make buffer a const bfd_byte.
1107 * p-valprint.c (pascal_object_print_class_method)
1108 (pascal_object_print_class_method): Ditto.
1109
1110 * language.h (struct language_defn): Make la_printstr's buffer
1111 parameter a const bfd_byte.
1112 * p-lang.h (pascal_printstr): Update function to match.
1113 * ada-valprint.c (ada_printstr): Update function to match.
1114 * scm-lang.c (scm_printstr): Update function to match.
1115 * p-lang.c (pascal_printstr): Update function to match.
1116 * ada-lang.h (ada_printstr): Update function to match.
1117 * m2-lang.c (m2_printstr): Update function to match.
1118 * objc-lang.c (objc_printstr): Update function to match.
1119 * c-lang.h (c_printstr): Update function to match.
1120 * f-lang.c (f_printstr): Update function to match.
1121 * c-lang.c (c_printstr): Update function to match.
1122 * language.c (unk_lang_printstr): Update function to match.
1123
1124 * valprint.c (val_print_type_code_int): Make buffer a const bfd_byte.
1125 * valprint.h (val_print_type_code_int): Ditto.
1126
1127 * objc-lang.h (c_val_print, c_value_print): Delete declarations.
1128
1129 * cp-valprint.c (cp_print_class_method)
1130 (cp_print_class_member): Make buffer a const bfd_byte.
1131 * c-lang.h (cp_print_class_member, cp_print_class_method): Ditto.
1132
1133 * ada-lang.c (value_from_contents_and_address)
1134 (to_record_with_fixed_variant_part)
1135 (value_tag_from_contents_and_address, ada_to_fixed_type)
1136 (to_fixed_variant_branch_type, to_fixed_record_type)
1137 (ada_template_to_fixed_record_type, cond_offset_host)
1138 (ada_template_to_fixed_record_type_1): Make buffer a const
1139 bfd_byte.
1140 * ada-lang.h (ada_template_to_fixed_record_type_1)
1141 (value_from_contents_and_address, ada_to_fixed_type): Ditto.
1142
1143 * ada-valprint.c (char_at, printstr): Make buffer a const bfd_byte.
1144
1145 * gdbtypes.h (print_scalar_formatted): Make buffer a const bfd_byte.
1146 * printcmd.c (print_scalar_formatted): Update.
1147
1148 * value.h (value_bit_index, print_floating)
1149 (find_rt_vbase_offset): Make buffer a const bfd_byte.
1150 * valprint.c (print_floating): Update.
1151 * valarith.c (value_bit_index): Update.
1152 * valops.c (find_rt_vbase_offset): Update.
1153
1154 * valprint.h (print_octal_chars, print_char_chars)
1155 (print_hex_chars, print_decimal_chars, print_binary_chars): Make
1156 buffer a const bfd_byte.
1157 * valprint.c (print_binary_chars, print_octal_chars)
1158 (print_decimal_chars, print_hex_chars, print_char_chars): Make
1159 "valaddr"buffer a const bfd_byte, ditto for local variables
1160 referencing that buffer.
1161
1162 * m2-valprint.c: Include "c-lang.h".
1163 (c_val_print): Delete extern declaration.
1164 * scm-valprint.c: Include "c-lang.h".
1165 (c_val_print): Delete extern declaration.
1166 Makefile.in: Update dependencies.
1167
1168 * gnu-v2-abi.h (gnuv2_baseclass_offset): Make "valaddr" a const
1169 bfd_byte.
1170 * cp-abi.h (baseclass_offset): Make "valaddr" a const bfd_byte.
1171 (struct cp_abi_ops): Make baseclass_offset's "valaddr" a const
1172 bfd_byte.
1173 * cp-abi.c (baseclass_offset): Update.
1174 * gnu-v2-abi.c (gnuv2_baseclass_offset): Update.
1175
1176 * gnu-v2-abi.h: New file.
1177 * gnu-v2-abi.c: Include "gnu-v2-abi.h".
1178 (gnuv2_baseclass_offset): Delete declaration.
1179 * hpacc-abi.c: Include "gnu-v2-abi.h".
1180 (gnuv2_baseclass_offset): Delete extern declaration.
1181 * Makefile.in: Update dependencies.
1182
1183 * doublest.c (floatformat_is_negative, floatformat_is_nan)
1184 (floatformat_mantissa, get_field): Make the buffer a const
1185 bfd_byte, simplify.
1186
1187 2005-01-27 Andrew Cagney <cagney@gnu.org>
1188
1189 * value.h (struct value): Change type of contents to bfd_byte.
1190 (VALUE_CONTENTS_RAW): Simplify.
1191
1192 * gdbarch.sh (integer_to_address): Change buf parameter to a const
1193 bfd_byte, make pure-multi-arch.
1194 * gdbarch.h, gdbarch.c: Regenerate.
1195 * mips-tdep.c (mips_integer_to_address): Update.
1196 * value.c (value_as_address): Update.
1197
1198 * cli/cli-dump.h (fopen_with_cleanup): Make "filename" const.
1199 * cli/cli-dump.c (dump_binary_file, dump_bfd_file): Make string
1200 parameters const, change buf to a const bfd_byte.
1201 (fopen_with_cleanup, bfd_openw_with_cleanup): Make all string
1202 parameters const.
1203
1204 * corefile.c (write_memory): Update, make a copy of the read-only
1205 buffer.
1206 * target.c (target_read_memory): Update.
1207 (target_write_memory): Update, make a copy of the read-only
1208 buffer.
1209 * gdbcore.h (write_memory): Change buffer type to bfd_byte, make
1210 const.
1211 * target.h (target_read_memory, target_write_memory): Change
1212 buffer type to bfd_byte; for write_memory, make it const.
1213 * symfile-mem.c (do_target_read_memory): New function.
1214 (symbol_file_add_from_memory): Pass do_target_read_memory to
1215 bfd_elf_bfd_from_remote_memory.
1216
1217 * value.h: Indent using gdb_indent.sh.
1218
1219 * configure: Regenerate to track ../gettext.m4 change.
1220
1221 2005-01-26 Andrew Cagney <cagney@gnu.org>
1222
1223 * rs6000-tdep.c: Include "reggroups.h".
1224 (rs6000_gdbarch_init): Set register_reggroup_p.
1225 (rs6000_register_reggroup_p): New function.
1226
1227 2005-01-26 Orjan Friberg <orjanf@axis.com>
1228
1229 * cris-tdep.c (enum cris_num_regs, enum cris_regnums)
1230 (cris_sigtramp_frame_unwind_cache, cris_register_size): Update for
1231 CRISv32.
1232 (crisv32_single_step_through_delay, cris_can_use_hardware_watchpoint)
1233 (cris_region_ok_for_watchpoint, cris_stopped_data_address)
1234 (crisv32_cannot_fetch_register, crisv32_cannot_store_register)
1235 (crisv32_register_type, cris_special_register_name)
1236 (crisv32_register_name): New functions.
1237 (cris_spec_reg_applicable): Recognize more versions.
1238 (cris_register_name): Update with call to cris_special_register_name.
1239 (find_cris_op): Filter out CRISv32 instructions. Tweaked comment and
1240 warning when unable to find step target.
1241 (CRISV10_ELF_NGREG, CRISV32_ELF_NGREG, crisv32_elf_gregset_t): Define.
1242 (supply_gregset): Add struct gdbarch_tdep. Set pseudo-PC register for
1243 CRISv32.
1244 (fetch_core_registers): Update for CRISv32.
1245 (cris_gdbarch_init): Set pc_regnum, register_type, num_regs,
1246 register_name, cannot_store_register, cannot_fetch_register,
1247 have_nonsteppable_watchpoint, single_step_through_delay for CRISv32.
1248
1249 2005-01-26 Nick Roberts <nickrob@snap.net.nz>
1250
1251 * interps.c (interpreter_exec_cmd): Use condition,
1252 e.reason < 0, to raise an error.
1253
1254 2005-01-25 Andrew Cagney <cagney@gnu.org>
1255
1256 * ppc-linux-tdep.c: Include "tramp-frame.h"
1257 (struct ppc_linux_sigtramp_cache)
1258 (ppc_linux_sigtramp_this_id, ppc_linux_sigtramp_prev_register)
1259 (ppc_linux_sigtramp_unwind, ppc_linux_sigtramp_sniffer)
1260 (ppc_linux_sigtramp_cache): Delete.
1261 (ppc32_linux_sigaction_cache_init)
1262 (ppc64_linux_sigaction_cache_init)
1263 (ppc32_linux_sighandler_cache_init)
1264 (ppc64_linux_sighandler_cache_init)
1265 (ppc32_linux_sigaction_tramp_frame)
1266 (ppc64_linux_sigaction_tramp_frame)
1267 (ppc32_linux_sighandler_tramp_frame)
1268 (ppc64_linux_sighandler_tramp_frame)
1269 (ppc_linux_sigtramp_cache, ppc_linux_init_abi): Implement 32 and
1270 64-bit, sigaction and siginfo tramp-frame unwinders.
1271
1272 * ppc-linux-tdep.c (ppc_linux_init_abi): Always set
1273 long_double_bit to 8.
1274
1275 2005-01-24 Andrew Cagney <cagney@gnu.org>
1276
1277 * infrun.c (handle_inferior_event): Handle back-to-back and nested
1278 signals where the step_resume_breakpoint may have already been
1279 inserted.
1280
1281 2005-01-24 Andrew Cagney <cagney@gnu.org>
1282
1283 * configure: Regenerate, ../gettext.m4 was updated.
1284
1285 2005-01-23 Mark Kettenis <kettenis@gnu.org>
1286
1287 * NEWS: Mention new BSD user-level threads support.
1288
1289 * i386obsd-tdep.c: Update copyright year. Include
1290 "bsd-uthread.h".
1291 (i386obsd_uthread_reg_offset): New variable.
1292 (I386OBSD_UTHREAD_ESP_OFFSET): New define.
1293 (i386obsd_supply_uthread, i386obsd_collect_uthread): New
1294 functions.
1295 (i386obsd_init_abi): Set supply_uthread and collect_uthread.
1296 * Makefile.in (i386obsd-tdep.o): Update dependencies.
1297 * config/i386/obsd.mt (TDEPFILES): Add bsd-uthread.o.
1298
1299 2005-01-23 Christopher Faylor <cgf@timesys.com>
1300
1301 * win32-nat.c: Update copyright year.
1302 (child_init_thread_list): Set thread linked list point to NULL so that
1303 it won't be reused after clearing.
1304
1305 2005-01-21 Mark Kettenis <kettenis@gnu.org>
1306
1307 * acconfig.h (HAVE_STRUCT_REG_R_FS, HAVE_STRUCT_R_GS): Remove
1308 undefs.
1309 * configure.ac: Use AC_CHECK_MEMBERS to check whether `struct
1310 thread' has a td_pcb member and whether `struct reg' has r_fs and
1311 r_gs members.
1312 * configure, config.in: Regenerate.
1313
1314 2005-01-21 Mark Kettenis <kettenis@gnu.org>
1315
1316 * configure.ac: Remove ia64-*-aix* junk.
1317 * configure: Regenerate.
1318
1319 * configure.ac: Use AC_CHECK_DECLS instead of gcc_AC_CHECK_DECLS
1320 and BFD_NEED_DECLARATION. Don't check if a declaration of strdup
1321 is necessary.
1322 * configure, config.in: Regenerate.
1323 * utils.c: Adjust for usage of AC_CHECK_DECLS instead of
1324 BFD_NEED_DECLARATION. Never provide a prototype for
1325 caninicalize_file_name.
1326 * gdb_string.h: Adjust for usage of AC_CHECK_DECLS instead of
1327 BFD_NEED_DECLARATION.
1328
1329 * configure.ac (targ_archs): Use standard autoconf check for
1330 "struct stat.st_blocks" instead of rolling our own.
1331 * configure: Regenerated.
1332 * acconfig.h (HAVE_STRUCT_STAT_ST_BLOCKS): Remove undef.
1333 * config.in: Regenerated.
1334
1335 2005-01-21 Mark Kettenis <kettenis@gnu.org>
1336
1337 * configure.ac: Modernize checks for `long long' and `long double'
1338 support.
1339 * configure: Regenerated.
1340 * acconfig.h (CC_HAS_LONG_LONG, PRINTF_HAS_LONG_LONG)
1341 (PRINT_HAS_LONG_DOUBLE, SCANF_HAS_LONG_DOUBLE): Remove undefs.
1342 * config.in: Regenerated.
1343
1344 2005-01-20 Mark Kettenis <kettenis@gnu.org>
1345
1346 * acconfig.h (HAVE_STRUCT_SAVE_STATE_T)
1347 (HAVE_STRUCT_MEMBER_SS_WIDE): Remove undefs.
1348 * configure.ac: Remove checks for HP-UX save_state structure.
1349 * configure: Regenerated.
1350
1351 2005-01-19 Andrew Cagney <cagney@gnu.org>
1352
1353 * utils.c (quit): Simplify, call fatal.
1354 * exceptions.c: Include "serial.h"
1355 (print_flush): Mimic flush code found in utils.c:quit.
1356 * Makefile.in: Update dependencies.
1357
1358 2005-01-19 Jim Blandy <jimb@redhat.com>
1359
1360 * configure.tgt: Set build_rdi_share to "yes" on those targets
1361 that use that debugging protocol.
1362 Set build_nlm to yes to build NLM stub for Netware targets.
1363 * configure.ac: If build_rdi_share is "yes", then configure the
1364 rdi-share subdirectory.
1365 If build_nlm is "yes", the configure the "nlm" subdirectory.
1366 * configure: Regenerated.
1367
1368 * rdi-share/configure, rdi-share/aclocal.m4: Regenerated using
1369 autoconf 2.59 and automake 1.9.3.
1370
1371 2005-01-19 Andrew Cagney <cagney@gnu.org>
1372
1373 * exceptions.h (deprecated_throw_reason): Rename throw_reason.
1374 * exceptions.c (deprecated_throw_reason): Rename throw_reason.
1375 * utils.c (internal_verror, quit): Update.
1376 * remote-sds.c (interrupt_query): Update.
1377 * remote-mips.c (mips_error, mips_kill): Update.
1378 * remote-fileio.c (remote_fileio_ctrl_c_signal_handler): Update.
1379 * remote.c (interrupt_query): Update.
1380 * ocd.c (interrupt_query): Update.
1381 * nto-procfs.c (interrupt_query): Update.
1382 * monitor.c (monitor_interrupt_query): Update.
1383 * breakpoint.c (break_command_1): Update.
1384
1385 * infrun.c: (resume, proceed, wait_for_inferior)
1386 (handle_inferior_event, stop_stepping)
1387 (prepare_to_wait): Write debug output to gdb_stdlog.
1388
1389 2005-01-19 Mark Kettenis <kettenis@gnu.org>
1390
1391 * inf-ptrace.c (inf_ptrace_prepare_to_store)
1392 (inf_ptrace_post_startup_inferior)
1393 (inf_ptrace_acknowledge_created_inferior)
1394 (inf_ptrace_insert_fork_catchpoint)
1395 (inf_ptrace_remove_fork_catchpoint)
1396 (inf_ptrace_insert_vfork_catchpoint):
1397 (inf_ptrace_remove_vfork_catchpoint, inf_ptrace_follow_fork)
1398 (inf_ptrace_insert_exec_catchpoint)
1399 (inf_ptrace_remove_exec_catchpoint): Remove functions.
1400 (inf_ptrace_reported_exec_events_per_exec_call): Tweak comment.
1401 (inf_ptrace_target): Don't set to_prepare_to_store,
1402 to_post_startup_inferior, to_acknowledge_created_inferior,
1403 to_insert_fork_ctachpoint, to_remove_fork_catchpoint,
1404 to_insert_vfork_catchpoint, to_remove_vfork_catchpoint,
1405 to_follow_fork, to_insert_exec_catchpoint,
1406 to_remove_exec_catchpoint.
1407
1408 2005-01-18 Andrew Cagney <cagney@gnu.org>
1409
1410 * target.h (struct target_ops): Change return type of
1411 to_insert_fork_catchpoint, to_insert_vfork_catchpoint and
1412 to_insert_exec_catchpoint to void.
1413 (child_insert_fork_catchpoint, child_insert_vfork_catchpoint)
1414 (child_insert_exec_catchpoint): Change return type to void.
1415 * target.c (update_current_target): Update.
1416 (debug_to_insert_fork_catchpoint)
1417 (debug_to_insert_vfork_catchpoint)
1418 (debug_to_insert_exec_catchpoint): Update.
1419 * inf-child.c (inf_child_insert_fork_catchpoint)
1420 (inf_child_insert_vfork_catchpoint)
1421 (inf_child_insert_exec_catchpoint): Update.
1422 * breakpoint.c (insert_catchpoint): Update, do not throw an error.
1423 * linux-nat.c (child_insert_fork_catchpoint)
1424 (child_insert_vfork_catchpoint)
1425 (child_insert_exec_catchpoint): Update.
1426 * inftarg.c (child_insert_fork_catchpoint)
1427 (child_insert_vfork_catchpoint,)
1428 (child_insert_exec_catchpoint): Update.
1429
1430 * remote.c (remote_open_1): Use throw_exception.
1431
1432 2005-01-17 Michael Snyder <msnyder@redhat.com>
1433
1434 * mips-linux-tdep.c: Whitespace tweaks.
1435
1436 2005-01-17 Corinna Vinschen <vinschen@redhat.com>
1437
1438 * infcmd.c (attach_command): Call CLEAR_SOLIB if available.
1439
1440 2005-01-17 Andrew Cagney <cagney@gnu.org>
1441
1442 * top.h (source_error, source_pre_error): Delete declaration.
1443 * cli/cli-script.c (source_error_allocated, source_error): Delete.
1444 (script_from_file, source_cleanup_lines): Do not manipulate
1445 source_error_allocated, error_pre_print and source_error.
1446 (struct source_cleanup_lines_args): Delete fields old_pre_error,
1447 and old_error_pre_print.
1448 * top.c (source_error_allocated, source_error)
1449 (source_pre_error): Delete.
1450 (command_line_input): Do not set error_pre_print.
1451 * event-top.c (command_line_handler): Do not set error_pre_print.
1452
1453 2005-01-16 Jason Thorpe <thorpej@netbsd.org>
1454
1455 * MAINTAINERS: Update my email address.
1456
1457 2005-01-16 Mark Kettenis <kettenis@gnu.org>
1458
1459 * configure.ac: Provide prerequisite headers when checking
1460 <term.h>.
1461 * configure: Regenerate.
1462
1463 * amd64fbsd-tdep.c: Update copyright year. Include "gdb_assert.h"
1464 and "bsd-uthread.h".
1465 (amd64fbsd_jmp_buf_reg_offset): New variable.
1466 (amd64fbsd_supply_uthread, amd64fbsd_collect_uthread): New
1467 functions.
1468 (amd64fbsd_init_abi): Set supply_uthread and collect_uthread.
1469 * i386fbsd-tdep.c: Fix typo.
1470 * Makefile.in (amd64fbsd-tdep.o): Update dependencies.
1471 * config/i386/fbsd64.mt (TDEPFILES): Add bsd-uthread.o.
1472
1473 2005-01-16 Andrew Cagney <cagney@gnu.org>
1474
1475 * cli/cli-script.c: Include "exceptions.h".
1476 (struct wrapped_read_command_file_args): Define.
1477 (wrapped_read_command_file): New function.
1478 (script_from_file): Replace direct call to read_command_file by
1479 one wrapped by an exception handler.
1480 * exceptions.c (throw_it): Free the old message after creating the
1481 new.
1482 * Makefile.in: Update dependencies.
1483
1484 2005-01-16 Mark Kettenis <kettenis@gnu.org>
1485
1486 * sparc64fbsd-tdep.c: Update copyright year.
1487 (sparc64fbsd_collect_gregset, sparc64fbsd_collect_fpregset): New
1488 functions.
1489 (sparc64fbsd_init_abi): Create register sets with collect
1490 functions.
1491
1492 * sparc64fbsd-nat.c: Include "fbsd-nat.h".
1493 (_initialize_sparc64fbsd_nat): Add some extra features to the
1494 generic SPARC target.
1495 * Makefile.in (sparc64fbsd-nat.o): Update dependencies.
1496 * config/sparc/fbsd.mh (NATDEPFILES): Add fbsd-nat.o and gcore.o.
1497 (NAT_FILE): Set to solib.h.
1498 * config/sparc/nm-fbsd.h: Remove file.
1499
1500 * sparc64-tdep.c (sparc64_store_arguments): Fix typo.
1501
1502 * sparc-tdep.c (sparc_integral_or_pointer_p): Simplify.
1503
1504 2005-01-16 Andrew Cagney <cagney@gnu.org>
1505
1506 * exceptions.c (struct catcher): Delete saved_error_pre_print and
1507 saved_quit_pre_print.
1508 (catcher_init): Delete parameter errstring, do not override the
1509 pre_print strings.
1510 (catcher_pop): Do not restore the pre_print strings.
1511 (catch_exception, catch_exceptions_with_msg, catch_errors)
1512 (catch_command_errors): Update catch_init calls.
1513
1514 2005-01-16 Mark Kettenis <kettenis@gnu.org>
1515
1516 * Makefile.in (sparc64fbsd-nat.o): Update dependencies.
1517 * sparc64fbsd-nat.c: Update copyright year. Include "target.h".
1518
1519 2005-01-15 Andrew Cagney <cagney@gnu.org>
1520
1521 * acinclude.m4: Include ../bfd/bfd.m4 instead of
1522 ../bfd/acinclude.m4. Include ../gettext.m4.
1523 * aclocal.m4, configure: Re-generate.
1524
1525 * exceptions.c (do_captured_command)
1526 (struct captured_command_args): Delete.
1527 (catch_command_errors): Simplify by inlining call to catch_errors.
1528
1529 * exceptions.c (struct catcher): Delete field print_message.
1530 (catcher_init): Delete print_message parameter.
1531 (catch_exception, catch_exceptions_with_msg, catch_errors): Update.
1532 (throw_it): Delete prefix parameter.
1533 (throw_verror, throw_vfatal, throw_error): Update.
1534
1535 2005-01-14 Andrew Cagney <cagney@gnu.org>
1536
1537 * exceptions.c (print_and_throw): Delete, replaced by throw_it.
1538 (throw_reason): Leave the exception's message field blank.
1539 (throw_it): New function, create the exception and throw it.
1540 (throw_verror, throw_vfatal, throw_error): Call throw_it.
1541 (print_any_exception): New function.
1542 (catch_errors, catch_exceptions_with_msg): Call
1543 print_any_exception.
1544 (throw_exception): Move code calling annotate_error and
1545 annotate_quit from here ...
1546 (print_exception): ... to here.
1547
1548 * exceptions.c (exception_fprintf, exception_print): Move printing
1549 of \n from here ...
1550 (print_exception): ... to here.
1551 (print_flush): New function.
1552 (exception_print, exception_fprintf): Replace duplicated flush and
1553 wrap code with call to print_flush.
1554 (print_and_throw): Simplify, by using xstrvprintf, print_flush,
1555 and print_exception.
1556 (do_write): Delete.
1557
1558 * remote-sds.c (interrupt_query): Call throw_reason instead of
1559 throw_exception.
1560 * remote-mips.c (mips_error, mips_kill): Ditto
1561 * ocd.c (interrupt_query): Ditto.
1562 * nto-procfs.c (interrupt_query): Ditto.
1563 * monitor.c (monitor_interrupt_query): Ditto.
1564
1565 2005-01-14 Jeff Johnston <jjohnstn@redhat.com>
1566
1567 * ia64-linux-nat.c: Include "ia64-tdep.h" to get register definitions.
1568
1569 2005-01-14 Andrew Cagney <cagney@gnu.org>
1570
1571 * exceptions.h (catch_exceptions): Delete errstring parameter.
1572 (catch_exceptions_with_msg): Ditto.
1573 * exceptions.c (catch_exceptions_with_msg): Update.
1574 (catch_exceptions): Update.
1575 * symfile-mem.c (add_vsyscall_page): Update.
1576 * frame.c (get_current_frame): Update.
1577 * wrapper.c (gdb_value_struct_elt): Update.
1578 * exceptions.c (catch_exceptions): Update.
1579 * thread.c (gdb_list_thread_ids, gdb_thread_select): Update.
1580 * breakpoint.c (gdb_breakpoint_query, gdb_breakpoint): Update.
1581 * remote-fileio.c (remote_fileio_request): Update.
1582
1583 * exceptions.h (exception_fprintf): Declare.
1584 (exception_print): Drop pre_print parameter.
1585 * mi/mi-main.c (mi_execute_command): Update exception_print call.
1586 * cli/cli-interp.c (safe_execute_command): Update exception_print
1587 call.
1588 * remote.c (remote_open_1): Instead of passing an error prefix to
1589 catch_exceptions, use catch_exceptions and exception_fprintf.
1590 (remote_start_remote): Change return type to void.
1591 * breakpoint.c (insert_bp_location): Instead of passing an error
1592 prefix to catch_exceptions, use catch_exceptions and
1593 exception_fprintf.
1594 (insert_catchpoint): Change return type to void.
1595 (break_command_1): Update exception_print call.
1596 * exceptions.c (exception_fprintf): New function.
1597 (print_exception): New function.
1598 (exception_print): Use print_exception.
1599
1600 * utils.c (error_output_message): Delete function.
1601 * defs.h (error_output_message): Delete declaration.
1602
1603 * linespec.c (symtab_from_filename, decode_variable): Use
1604 throw_error instead of error_silent.
1605 * breakpoint.c (do_captured_parse_breakpoint): Change return type
1606 to void.
1607 (break_command_1): Use catch_exception and check the error return
1608 status.
1609 * exceptions.c (throw_error): New function.
1610 (throw_vsilent): Delete function.
1611 * exceptions.h (throw_error): Declare.
1612 (throw_vsilent): Delete declaration.
1613 * utils.c (error_silent): Delete function.
1614 * defs.h (error_silent): Delete declaration.
1615
1616 * mi/mi-main.c (mi_execute_command): Print the exception.
1617 * cli/cli-interp.c (safe_execute_command): Print the exception.
1618 * exceptions.h (exception_print): Declare.
1619 * exceptions.c (struct catcher): Add field print_message.
1620 (catcher_init): Add parameter print_message, store in the catcher
1621 struct.
1622 (print_and_throw): Only print the message when print_message.
1623 (catch_exceptions_with_msg, catch_errors): Pass print_message=1 to
1624 catcher_init.
1625 (catch_exception): Pass print_message=0 to catcher_init.
1626
1627 * varobj.c (varobj_create): Add missing \n.
1628
1629 2005-01-13 Michael Snyder <msnyder@redhat.com>
1630
1631 * cli/cli-decode.h: Whitespace tweaks.
1632 * wince.c: Whitespace tweaks.
1633 * uw-thread.c: Whitespace tweaks.
1634 * utils.c: Whitespace tweaks.
1635 * tracepoint.[ch]: Whitespace tweaks.
1636 * solist.h: Whitespace tweaks.
1637
1638 2005-01-13 Andrew Cagney <cagney@gnu.org>
1639
1640 * exceptions.h (struct exception): Make message const.
1641 * mi/mi-main.c (mi_execute_command): Pass result.message directly
1642 to fputstr_unfiltered.
1643
1644 2005-01-13 Michael Snyder <msnyder@redhat.com>
1645
1646 * stack.c: Whitespace tweaks.
1647 * somsolib.[ch]: Whitespace tweaks.
1648 * solib-aix.c: Whitespace tweaks.
1649 * solib.c: Whitespace tweaks.
1650 * solib-frv.c: Whitespace tweaks.
1651 * solib.h: Whitespace tweaks.
1652 * solib-irix.c: Whitespace tweaks.
1653 * solib-som.c: Whitespace tweaks.
1654 * solib-sunos.c: Whitespace tweaks.
1655 * solib-svr4.[ch]: Whitespace tweaks.
1656 * ser-tcp.c: Whitespace tweaks.
1657 * ser-unix.c: Whitespace tweaks.
1658 * serial.h: Whitespace tweaks.
1659 * scm-valprint.c: Whitespace tweaks.
1660 * rs6000-tdep.c: Whitespace tweaks.
1661 * rs6000-nat.c: Whitespace tweaks.
1662 * remote.c: Whitespace tweaks.
1663
1664 2005-01-13 Andrew Cagney <cagney@gnu.org>
1665
1666 * defs.h (error_last_message, error_init): Delete declaration.
1667 * utils.c (fatal, vfatal): Call throw_vfatal.
1668 (error, verror): Call throw_verror;
1669 (do_write, error_stream_1): Delete function.
1670 (error_stream): Simplify, call error.
1671 (error_last_message, error_init, gdb_lasterr): Delete.
1672 (error_silent): Simplify, call throw_vsilent.
1673 * mi/mi-interp.c (mi_cmd_interpreter_exec): Dup the message.
1674 * main.c (captured_main): Delete call to error_init.
1675 * exceptions.c (throw_verror, throw_verror)
1676 (throw_vsilent): New functions.
1677 (do_write, print_and_throw): New functions.
1678 (last_message): New global.
1679 (throw_reason): Replace error_last_message with last_message.
1680 (catch_exceptions_with_msg): Dup the message.
1681 * exceptions.h (throw_verror, throw_vfatal, throw_vsilent):
1682 Declare.
1683
1684 2005-01-13 Michael Snyder <msnyder@redhat.com>
1685
1686 * remote-st.c: Whitespace tweaks.
1687 * remote-sim.c: Whitespace tweaks.
1688 * remote-mips.c: Whitespace tweaks.
1689 * pa64solib.[ch]: Whitespace tweaks.
1690 * mdebugread.c: Whitespace tweaks.
1691 * main.c: Whitespace tweaks.
1692 * interps.c: Whitespace tweaks.
1693 * infrun.c: Whitespace tweaks.
1694 * infcmd.c: Whitespace tweaks.
1695 * hpux-thread.c: Whitespace tweaks.
1696 * hppa-hpux-tdep.c: Whitespace tweaks.
1697 * gdbcore.h: Whitespace tweaks.
1698 * gdbcmd.h: Whitespace tweaks.
1699 * gdb-events[.c, .h, .sh]: Whitespace tweaks.
1700 * corefile.c: Whitespace tweaks.
1701 * completer.c: Whitespace tweaks.
1702 * coff-solib.c: Whitespace tweaks.
1703 * coff-solib.h: Whitespace tweaks.
1704 * cli-out.c: Whitespace tweaks.
1705 * breakpoint.c: Whitespace tweaks.
1706 * cli/cli-interp.c: Tweak comments, per coding standard.
1707
1708 2005-01-13 Andrew Cagney <cagney@gnu.org>
1709
1710 * breakpoint.c (gdb_breakpoint_query): Update, use
1711 catch_exceptions_with_msg.
1712 (do_captured_breakpoint): Add uiout parameter.
1713 (gdb_breakpoint): Update, use catch_exceptions_with_msg.
1714 * mi/mi-main.c (mi_cmd_thread_select): Pass mi_error_message to
1715 gdb_thread_select. Return MI_CMD_ERROR instead of
1716 MI_CMD_CAUGHT_ERROR.
1717 (mi_cmd_thread_list_ids): Ditto for gdb_list_thread_ids.
1718 (enum captured_mi_execute_command_actions): Delete
1719 EXECUTE_COMMAND_DISPLAY_ERROR.
1720 (captured_mi_execute_command): Delete code handling
1721 MI_CMD_CAUGHT_ERROR.
1722 (mi_execute_command): Don't check for
1723 EXECUTE_COMMAND_DISPLAY_ERROR.
1724 * mi/mi-cmd-break.c (breakpoint_notify): Update call to
1725 gdb_breakpoint_query.
1726 (mi_cmd_break_insert): Pass mi_error_message to gdb_breakpoint.
1727 * mi/mi-cmds.h (enum mi_cmd_result): Delete MI_CMD_CAUGHT_ERROR.
1728 * gdb.h (gdb_thread_select, gdb_list_thread_ids)
1729 (gdb_breakpoint, gdb_breakpoint_query): Add error_message
1730 parameter.
1731 * thread.c (thread_command): Update call.
1732 (gdb_thread_select, gdb_list_thread_ids): Update, call
1733 catch_exceptions_with_msg.
1734
1735 * mi/mi-main.c (mi_execute_command): Use catch_exception,
1736 eliminate call to error_last_message.
1737 (captured_mi_execute_command): Change return type to void.
1738
1739 2005-01-12 Andrew Cagney <cagney@gnu.org>
1740
1741 * exceptions.c (exception_none): New variable.
1742 * Makefile.in: Update dependencies.
1743 * interps.c: Include "exceptions.h".
1744 (interpreter_exec_cmd, interp_exec): Update to return "struct
1745 exception"
1746 * exceptions.h (no_exception): Declare.
1747 * tui/tui-interp.c (tui_exec): Update to return "struct exception"
1748 * mi/mi-interp.c: Include "exceptions.h".
1749 (mi_cmd_interpreter_exec, mi_interpreter_exec): Update to return
1750 'struct exception".
1751 * cli/cli-interp.c (cli_interpreter_exec, safe_execute_command)
1752 (do_captured_execute_command): Update to use catch_exception.
1753 * interps.h: Include "exceptions.h".
1754 (interp_exec_ftype, interp_exec): Return "struct exception".
1755
1756 * exceptions.h (throw_reason): Rename throw_exception.
1757 (enum errors, struct exception): Define.
1758 (catch_exception_ftype): Define.
1759 (catch_exception, throw_exception): Declare.
1760 * exceptions.c (throw_exception): Rewrite.
1761 (throw_reason): New function.
1762 (struct catcher, catcher_state_machine): Replace "reason" with
1763 "exception", delete "gdberrmsg".
1764 (catch_exception): New function.
1765 (catcher_init): Replace "gdberrmsg" parameter with "exception".
1766 (catch_errors, catch_exceptions_with_msg): Re-implement passing
1767 exception to catcher_init.
1768 * utils.c (error_silent, error_stream_1): Use throw_reason.
1769 (internal_verror, quit): Ditto.
1770 * breakpoint.c (insert_catchpoint, break_command_1): Ditto.
1771 * remote-fileio.c (remote_fileio_ctrl_c_signal_handler): Ditto.
1772 * remote.c (remote_open_1, interrupt_query): Ditto.
1773
1774 2005-01-12 Mark Kettenis <kettenis@gnu.org>
1775
1776 * i386fbsd-tdep.c: Update copyright year. Include "gdbcore.h",
1777 "regcache.h", "gdb_assert.h" and "bsd-uthread.h".
1778 (i386fbsd_jmp_buf_reg_offset): New variable.
1779 (i386fbsd_supply_uthread, i386fbsd_collect_uthread): New
1780 functions.
1781 (i386fbsdaout_init_abi): Set supply_uthread and collect_uthread.
1782 * Makefile.in (i386fbsd-tdep.o): Update dependency.
1783 * config/i386/fbsd.mt (TDEPFILES): Add bsd-uthread.o.
1784
1785 * bsd-uthread.h: New file.
1786 * bsd-uthread.c: New file.
1787 * Makefile.in (bsd_uthread_h): New variable.
1788 (ALLDEPFILES): Add bsd-uthread.c.
1789 (bsd-uthread.o): New dependency.
1790
1791 * solib.h Update copyright year.
1792 (struct so_list): Forward declaration.
1793 (solib_read_symbols): New prototype.
1794 * solib.c (solib_read_symbols): New function.
1795 (solib_add): Call solib_read_symbols to read in symbols.
1796 (update_solib_list): Call observer_notify_solib_loaded.
1797
1798 * i386bsd-nat.c: Update copyright year. Don't include
1799 <sys/param.h> and <sys/user.h>.
1800 (register_u_addr, kernel_u_size): Remove functions.
1801 * config/i386/obsd.mh (NAT_FILE): Remove.
1802 * config/i386/obsdaout.mh (NAT_FILE): Set to solib.h.
1803 * config/i386/nm-obsd.h: Remove file.
1804
1805 2005-01-12 Andrew Cagney <cagney@gnu.org>
1806
1807 * exceptions.c: Include "gdb_string.h".
1808 (enum catcher_state, struct catcher): Define.
1809 (current_catcher): New global, replaces catch_return;
1810 (catch_return): Delete.
1811 (throw_exception): Use current_catcher->buf;
1812 (catcher_init, catcher_pop, catcher_state_machine): New functions.
1813 (catcher): Delete.
1814 (struct catch_errors_args): Delete.
1815 (do_catch_errors): Delete.
1816 (catch_exceptions): Replace body with call to
1817 catch_exceptions_with_msg.
1818 (catcher): Delete.
1819 (catch_exceptions_with_msg, catch_errors): Re-implement using
1820 catcher_state_machine.
1821
1822 * exceptions.h (enum return_reason, RETURN_MASK)
1823 (RETURN_MASK_QUIT, RETURN_MASK_ERROR, RETURN_MASK_ALL)
1824 (return_mask, throw_exception, catch_exceptions_ftype)
1825 (catch_exceptions_with_msg, catch_errors_ftype, catch_errors)
1826 (catch_command_errors_ftype, catch_command_errors): Move to
1827 exceptions.h.
1828 * exceptions.c, exceptions.h: New files.
1829 * top.c: Do not include <setjmp.h>.
1830 (SIGJMP_BUF, SIGSETJMP, SIGLONGJMP, catch_return)
1831 (throw_exception, catcher, catch_exceptions)
1832 (catch_exceptions_with_msg, struct catch_errors_args)
1833 (do_catch_errors, catch_errors, struct captured_command_args)
1834 (do_captured_command, catch_command_errors): Move to exceptions.c.
1835 * wrapper.c, wince.c, win32-nat.c, utils.c: Include "exceptions.h".
1836 * tui/tui-interp.c, top.c, thread.c, symmisc.c: Ditto.
1837 * symfile-mem.c, stack.c, solib.c, rs6000-nat.c: Ditto.
1838 * remote-sds.c, remote-mips.c, remote-fileio.c: Ditto.
1839 * remote-e7000.c, objc-lang.c, ocd.c: Ditto.
1840 * remote.c, nto-procfs.c, monitor.c, mi/mi-main.c: Ditto.
1841 * main.c, m32r-rom.c, infrun.c, inf-loop.c: Ditto.
1842 * hppa-hpux-tdep.c, frame.c, event-top.c, event-loop.c: Ditto.
1843 * corelow.c, corefile.c, cli/cli-interp.c, breakpoint.c: Ditto.
1844 * ada-valprint.c, ada-lang.c: Ditto.
1845 * Makefile.in (HFILES_NO_SRCDIR, COMMON_OBS): Add exceptions.h and
1846 exceptions.o. Update all dependencies.
1847
1848 2005-01-11 Mark Kettenis <kettenis@gnu.org>
1849
1850 * config/i386/nm-fbsd.h: Update copyright year.
1851 Don't include "config/nm-bsd.h".
1852 (KERNEL_U_SIZE): Remove macro.
1853 (kernel_u_size): Remove prototype.
1854
1855 * config/vax/nbsdaout.mh (NAT_FILE): Remove.
1856 * config/vax/nm-nbsdaout.h: Remove file.
1857
1858 2005-01-10 Elena Zannoni <ezannoni@redhat.com>
1859
1860 * MAINTAINERS: Remove self from sh/sh64 maintainership.
1861
1862 2005-01-10 Andrew Cagney <cagney@gnu.org>
1863
1864 * MAINTAINERS: List Andrew Cagney and Kevin Buettner as can commit
1865 changes to PowerPC, and Andrew Cagney as lead PowerPC GNU/Linux
1866 maintainer.
1867
1868 * MAINTAINERS: Hans-Peter Nilsson and Orjan Friberg can commit
1869 changes to CRIS.
1870
1871 * MAINTAINERS: Remove "Maintenance Only". Spell out that CAN
1872 COMMIT means can approve).
1873
1874 2005-01-10 Mark Kettenis <kettenis@gnu.org>
1875
1876 * vax-nat.c: Update copyright year. Include "inf-ptrace.h".
1877 (vax_register_u_offset): Make statuc.
1878 (_initialize_vax_nat): Construct and add target vector.
1879 * config/vax/vax.mh (NATDEPFILES): Remove infptrace.o and
1880 inftarg.o. Add inf-ptrace.o.
1881 * Makefile.in (vax-nat.o): Update dependencies.
1882
1883 * inf-ptrace.h: Update copyright year. Sync comment with
1884 inf-ptrace.c.
1885 (inf_ptrace_trad_target): New prototype.
1886 * inf-ptrace.c: Update copyright year. Include "regcache.h" and
1887 "gdb_assert.h"
1888 (inf_ptrace_target): Add comment.
1889 (inf_ptrace+register_u_offset): New variable.
1890 (inf_ptrace_fetch_register, inf_ptrace_fetch_registers)
1891 (inf_ptrace_store_register, inf_ptrace_store_registers)
1892 (inf_ptrace_trad_target): New functions.
1893 * Makefile.in (inf-ptrace.o): Update dependencies.
1894
1895 2005-01-09 Mark Kettenis <kettenis@gnu.org>
1896
1897 * configure.ac: Provide prerequisite headers when checking
1898 <link.h>, <sys/proc.h> and <sys/user.h>.
1899 * configure: Regenerate.
1900
1901 2005-01-08 Mark Kettenis <kettenis@gnu.org>
1902
1903 * config/powerpc/obsd.mt (DEPRECATED_TM_FILE): Set to
1904 tm-ppc-eabi.h instead of the removed tm-nbsd.h.
1905
1906 2005-01-07 Mark Kettenis <kettenis@gnu.org>
1907
1908 * config/ia64/tm-linux.h: Tweak comment. Update copyright year.
1909 Don't include "tm-ia64.h".
1910 * config/ia64/ia64.mt (DEPRECATED_TM_FILE): Remove.
1911 * config/ia64/tm-ia64.h: Remove. Move contents ...
1912 * ia64-tdep.h: ... here. Update copyright year.
1913
1914 2005-01-07 Andrew Cagney <cagney@gnu.org>
1915
1916 * configure.ac: Rename configure.in, require autoconf 2.59.
1917 * configure: Re-generate.
1918
1919 * configure.tgt: Disable arm*-*-*, thumb*-*-*, strongarm*-*-*,
1920 xscale-*-* and i[34567]86-*-netware* code adding rdi-share or nlm
1921 to configdirs.
1922
1923 * configure.in: Replace configdirs with multiple references to
1924 AC_CONFIG_SUBDIRS.
1925 * configure: Re-generate.
1926
1927 2005-01-05 Andreas Schwab <schwab@suse.de>
1928
1929 * ia64-tdep.c: Include "osabi.h".
1930 (native_find_global_pointer): Delete.
1931 (ia64_find_global_pointer): Renamed from
1932 generic_elf_find_global_pointer.
1933 (FIND_GLOBAL_POINTER): Delete. Change all users to call
1934 ia64_find_global_pointer instead.
1935 (ia64_gdbarch_init): Call gdbarch_init_osabi. Remove references
1936 to ia64_linux_sigcontext_register_address and
1937 ia64_linux_write_pc. Don't set tdep->find_global_pointer.
1938 (_initialize_ia64_tdep): Call gdbarch_register instead of
1939 deprecated register_gdbarch_init.
1940 (struct gdbarch_tdep): Remove find_global_pointer field and move
1941 to ...
1942 * ia64-tdep.h (struct gdbarch_tdep): ... here.
1943 (ia64_linux_sigcontext_register_address): Remove declaration.
1944 (ia64_linux_getunwind_table): Likewise.
1945 (ia64_linux_write_pc): Likewise.
1946 * ia64-linux-tdep.c: Include "osabi.h".
1947 (ia64_linux_sigcontext_register_address): Make static.
1948 (ia64_linux_write_pc): Likewise.
1949 (ia64_linux_init_abi): New.
1950 (_initialize_ia64_linux_tdep): New.
1951 * Makefile.in (ia64-tdep.o, ia64-linux-tdep.o): Depend on
1952 $(osabi_h).
1953
1954 2005-01-05 Kevin Buettner <kevinb@redhat.com>
1955
1956 * ia64-tdep.c (ia64_gdbarch_init): Eliminate dependency on
1957 functions in ia64-aix-tdep.c.
1958 * ia64-tdep.h (ia64_aix_sigcontext_register_address): Remove
1959 function defined in ia64-aix-tdep.c.
1960 * ia64-aix-tdep.c: Remove file.
1961 * config/ia64/linux.mt (TDEPFILES): Remove ia64-aix-tdep.o from
1962 this list.
1963 * Makefile.in (ia64-aix-tdep.o): Delete.
1964
1965 2005-01-05 Baurjan Ismagulov <ibr@ata.cs.hun.edu.tr>
1966
1967 Committed by Andrew Cagney.
1968 * ada-valprint.c, aix-thread.c, alpha-nat.c: I18n markup.
1969 * alphabsd-nat.c, alphanbsd-tdep.c, amd64-linux-nat.c: I18n markup.
1970 * amd64-tdep.c, amd64bsd-nat.c, amd64fbsd-nat.c: I18n markup.
1971 * arch-utils.c, arm-linux-nat.c, arm-tdep.c: I18n markup.
1972 * armnbsd-nat.c, armnbsd-tdep.c, auxv.c, avr-tdep.c: I18n markup.
1973 * aix-thread.c (_initialize_aix_thread): Get rid of the
1974 deprecated_add_show_from_set call.
1975 * alpha-tdep.c (_initialize_alpha_tdep): Ditto.
1976 * arm-tdep.c (_initialize_arm_tdep): Ditto.
1977 * command.h (add_setshow_enum_cmd): Add arguments for returning
1978 new list elements.
1979 * cli/cli-decode.c (add_setshow_enum_cmd): Ditto.
1980 * mips-tdep.c (_initialize_mips_tdep): Modify calls to
1981 add_setshow_enum_cmd.
1982
1983 2005-01-04 Mark Kettenis <kettenis@gnu.org>
1984
1985 * configure.host (ia64-*-aix*): Remove.
1986 * configure.tgt (ia64-*-aix*): Remove.
1987 * config/ia64/aix.mh: Remove file.
1988 * config/ia64/aix.mt: Remove file.
1989 * config/ia64/tm-aix.h: Remove file.
1990 * ia64-aix-nat.c: Remove file.
1991 * Makefile.in (ia64-aix-nat.o): Remove dependency.
1992
1993 * config/m88k/obsd.mh (NATDEPFILES): Really remove inf-child.o.
1994 Add back inf-ptrace.o.
1995
1996 2005-01-04 Andrew Cagney <cagney@gnu.org>
1997
1998 * version.in: Change format from 6.3.50_2005-01-04-cvs to
1999 6.3.50.20050104-cvs.
2000
2001 2005-01-04 Andreas Schwab <schwab@suse.de>
2002
2003 * breakpoint.c (break_command_1): Always free err_msg before
2004 returning when an exception was caught.
2005
2006 2005-01-01 Joel Brobecker <brobecker@gnat.com>
2007
2008 * hppa-tdep.c (prologue_inst_adjust_sp): Fix small confusion
2009 in register number for addil instruction.
2010
2011 For older changes see ChangeLog-2004.
2012 \f
2013 Local Variables:
2014 mode: change-log
2015 left-margin: 8
2016 fill-column: 74
2017 version-control: never
2018 End: