2005-01-18 Andrew Cagney <cagney@gnu.org>
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2005-01-18 Andrew Cagney <cagney@gnu.org>
2
3 * remote.c (remote_open_1): Use throw_exception.
4
5 2005-01-17 Michael Snyder <msnyder@redhat.com>
6
7 * mips-linux-tdep.c: Whitespace tweaks.
8
9 2005-01-17 Corinna Vinschen <vinschen@redhat.com>
10
11 * infcmd.c (attach_command): Call CLEAR_SOLIB if available.
12
13 2005-01-17 Andrew Cagney <cagney@gnu.org>
14
15 * top.h (source_error, source_pre_error): Delete declaration.
16 * cli/cli-script.c (source_error_allocated, source_error): Delete.
17 (script_from_file, source_cleanup_lines): Do not manipulate
18 source_error_allocated, error_pre_print and source_error.
19 (struct source_cleanup_lines_args): Delete fields old_pre_error,
20 and old_error_pre_print.
21 * top.c (source_error_allocated, source_error)
22 (source_pre_error): Delete.
23 (command_line_input): Do not set error_pre_print.
24 * event-top.c (command_line_handler): Do not set error_pre_print.
25
26 2005-01-16 Jason Thorpe <thorpej@netbsd.org>
27
28 * MAINTAINERS: Update my email address.
29
30 2005-01-16 Mark Kettenis <kettenis@gnu.org>
31
32 * configure.ac: Provide prerequisite headers when checking
33 <term.h>.
34 * configure: Regenerate.
35
36 * amd64fbsd-tdep.c: Update copyright year. Include "gdb_assert.h"
37 and "bsd-uthread.h".
38 (amd64fbsd_jmp_buf_reg_offset): New variable.
39 (amd64fbsd_supply_uthread, amd64fbsd_collect_uthread): New
40 functions.
41 (amd64fbsd_init_abi): Set supply_uthread and collect_uthread.
42 * i386fbsd-tdep.c: Fix typo.
43 * Makefile.in (amd64fbsd-tdep.o): Update dependencies.
44 * config/i386/fbsd64.mt (TDEPFILES): Add bsd-uthread.o.
45
46 2005-01-16 Andrew Cagney <cagney@gnu.org>
47
48 * cli/cli-script.c: Include "exceptions.h".
49 (struct wrapped_read_command_file_args): Define.
50 (wrapped_read_command_file): New function.
51 (script_from_file): Replace direct call to read_command_file by
52 one wrapped by an exception handler.
53 * exceptions.c (throw_it): Free the old message after creating the
54 new.
55 * Makefile.in: Update dependencies.
56
57 2005-01-16 Mark Kettenis <kettenis@gnu.org>
58
59 * sparc64fbsd-tdep.c: Update copyright year.
60 (sparc64fbsd_collect_gregset, sparc64fbsd_collect_fpregset): New
61 functions.
62 (sparc64fbsd_init_abi): Create register sets with collect
63 functions.
64
65 * sparc64fbsd-nat.c: Include "fbsd-nat.h".
66 (_initialize_sparc64fbsd_nat): Add some extra features to the
67 generic SPARC target.
68 * Makefile.in (sparc64fbsd-nat.o): Update dependencies.
69 * config/sparc/fbsd.mh (NATDEPFILES): Add fbsd-nat.o and gcore.o.
70 (NAT_FILE): Set to solib.h.
71 * config/sparc/nm-fbsd.h: Remove file.
72
73 * sparc64-tdep.c (sparc64_store_arguments): Fix typo.
74
75 * sparc-tdep.c (sparc_integral_or_pointer_p): Simplify.
76
77 2005-01-16 Andrew Cagney <cagney@gnu.org>
78
79 * exceptions.c (struct catcher): Delete saved_error_pre_print and
80 saved_quit_pre_print.
81 (catcher_init): Delete parameter errstring, do not override the
82 pre_print strings.
83 (catcher_pop): Do not restore the pre_print strings.
84 (catch_exception, catch_exceptions_with_msg, catch_errors)
85 (catch_command_errors): Update catch_init calls.
86
87 2005-01-16 Mark Kettenis <kettenis@gnu.org>
88
89 * Makefile.in (sparc64fbsd-nat.o): Update dependencies.
90 * sparc64fbsd-nat.c: Update copyright year. Include "target.h".
91
92 2005-01-15 Andrew Cagney <cagney@gnu.org>
93
94 * acinclude.m4: Include ../bfd/bfd.m4 instead of
95 ../bfd/acinclude.m4. Include ../gettext.m4.
96 * aclocal.m4, configure: Re-generate.
97
98 * exceptions.c (do_captured_command)
99 (struct captured_command_args): Delete.
100 (catch_command_errors): Simplify by inlining call to catch_errors.
101
102 * exceptions.c (struct catcher): Delete field print_message.
103 (catcher_init): Delete print_message parameter.
104 (catch_exception, catch_exceptions_with_msg, catch_errors): Update.
105 (throw_it): Delete prefix parameter.
106 (throw_verror, throw_vfatal, throw_error): Update.
107
108 2005-01-14 Andrew Cagney <cagney@gnu.org>
109
110 * exceptions.c (print_and_throw): Delete, replaced by throw_it.
111 (throw_reason): Leave the exception's message field blank.
112 (throw_it): New function, create the exception and throw it.
113 (throw_verror, throw_vfatal, throw_error): Call throw_it.
114 (print_any_exception): New function.
115 (catch_errors, catch_exceptions_with_msg): Call
116 print_any_exception.
117 (throw_exception): Move code calling annotate_error and
118 annotate_quit from here ...
119 (print_exception): ... to here.
120
121 * exceptions.c (exception_fprintf, exception_print): Move printing
122 of \n from here ...
123 (print_exception): ... to here.
124 (print_flush): New function.
125 (exception_print, exception_fprintf): Replace duplicated flush and
126 wrap code with call to print_flush.
127 (print_and_throw): Simplify, by using xstrvprintf, print_flush,
128 and print_exception.
129 (do_write): Delete.
130
131 * remote-sds.c (interrupt_query): Call throw_reason instead of
132 throw_exception.
133 * remote-mips.c (mips_error, mips_kill): Ditto
134 * ocd.c (interrupt_query): Ditto.
135 * nto-procfs.c (interrupt_query): Ditto.
136 * monitor.c (monitor_interrupt_query): Ditto.
137
138 2005-01-14 Jeff Johnston <jjohnstn@redhat.com>
139
140 * ia64-linux-nat.c: Include "ia64-tdep.h" to get register definitions.
141
142 2005-01-14 Andrew Cagney <cagney@gnu.org>
143
144 * exceptions.h (catch_exceptions): Delete errstring parameter.
145 (catch_exceptions_with_msg): Ditto.
146 * exceptions.c (catch_exceptions_with_msg): Update.
147 (catch_exceptions): Update.
148 * symfile-mem.c (add_vsyscall_page): Update.
149 * frame.c (get_current_frame): Update.
150 * wrapper.c (gdb_value_struct_elt): Update.
151 * exceptions.c (catch_exceptions): Update.
152 * thread.c (gdb_list_thread_ids, gdb_thread_select): Update.
153 * breakpoint.c (gdb_breakpoint_query, gdb_breakpoint): Update.
154 * remote-fileio.c (remote_fileio_request): Update.
155
156 * exceptions.h (exception_fprintf): Declare.
157 (exception_print): Drop pre_print parameter.
158 * mi/mi-main.c (mi_execute_command): Update exception_print call.
159 * cli/cli-interp.c (safe_execute_command): Update exception_print
160 call.
161 * remote.c (remote_open_1): Instead of passing an error prefix to
162 catch_exceptions, use catch_exceptions and exception_fprintf.
163 (remote_start_remote): Change return type to void.
164 * breakpoint.c (insert_bp_location): Instead of passing an error
165 prefix to catch_exceptions, use catch_exceptions and
166 exception_fprintf.
167 (insert_catchpoint): Change return type to void.
168 (break_command_1): Update exception_print call.
169 * exceptions.c (exception_fprintf): New function.
170 (print_exception): New function.
171 (exception_print): Use print_exception.
172
173 * utils.c (error_output_message): Delete function.
174 * defs.h (error_output_message): Delete declaration.
175
176 * linespec.c (symtab_from_filename, decode_variable): Use
177 throw_error instead of error_silent.
178 * breakpoint.c (do_captured_parse_breakpoint): Change return type
179 to void.
180 (break_command_1): Use catch_exception and check the error return
181 status.
182 * exceptions.c (throw_error): New function.
183 (throw_vsilent): Delete function.
184 * exceptions.h (throw_error): Declare.
185 (throw_vsilent): Delete declaration.
186 * utils.c (error_silent): Delete function.
187 * defs.h (error_silent): Delete declaration.
188
189 * mi/mi-main.c (mi_execute_command): Print the exception.
190 * cli/cli-interp.c (safe_execute_command): Print the exception.
191 * exceptions.h (exception_print): Declare.
192 * exceptions.c (struct catcher): Add field print_message.
193 (catcher_init): Add parameter print_message, store in the catcher
194 struct.
195 (print_and_throw): Only print the message when print_message.
196 (catch_exceptions_with_msg, catch_errors): Pass print_message=1 to
197 catcher_init.
198 (catch_exception): Pass print_message=0 to catcher_init.
199
200 * varobj.c (varobj_create): Add missing \n.
201
202 2005-01-13 Michael Snyder <msnyder@redhat.com>
203
204 * cli/cli-decode.h: Whitespace tweaks.
205 * wince.c: Whitespace tweaks.
206 * uw-thread.c: Whitespace tweaks.
207 * utils.c: Whitespace tweaks.
208 * tracepoint.[ch]: Whitespace tweaks.
209 * solist.h: Whitespace tweaks.
210
211 2005-01-13 Andrew Cagney <cagney@gnu.org>
212
213 * exceptions.h (struct exception): Make message const.
214 * mi/mi-main.c (mi_execute_command): Pass result.message directly
215 to fputstr_unfiltered.
216
217 2005-01-13 Michael Snyder <msnyder@redhat.com>
218
219 * stack.c: Whitespace tweaks.
220 * somsolib.[ch]: Whitespace tweaks.
221 * solib-aix.c: Whitespace tweaks.
222 * solib.c: Whitespace tweaks.
223 * solib-frv.c: Whitespace tweaks.
224 * solib.h: Whitespace tweaks.
225 * solib-irix.c: Whitespace tweaks.
226 * solib-som.c: Whitespace tweaks.
227 * solib-sunos.c: Whitespace tweaks.
228 * solib-svr4.[ch]: Whitespace tweaks.
229 * ser-tcp.c: Whitespace tweaks.
230 * ser-unix.c: Whitespace tweaks.
231 * serial.h: Whitespace tweaks.
232 * scm-valprint.c: Whitespace tweaks.
233 * rs6000-tdep.c: Whitespace tweaks.
234 * rs6000-nat.c: Whitespace tweaks.
235 * remote.c: Whitespace tweaks.
236
237 2005-01-13 Andrew Cagney <cagney@gnu.org>
238
239 * defs.h (error_last_message, error_init): Delete declaration.
240 * utils.c (fatal, vfatal): Call throw_vfatal.
241 (error, verror): Call throw_verror;
242 (do_write, error_stream_1): Delete function.
243 (error_stream): Simplify, call error.
244 (error_last_message, error_init, gdb_lasterr): Delete.
245 (error_silent): Simplify, call throw_vsilent.
246 * mi/mi-interp.c (mi_cmd_interpreter_exec): Dup the message.
247 * main.c (captured_main): Delete call to error_init.
248 * exceptions.c (throw_verror, throw_verror)
249 (throw_vsilent): New functions.
250 (do_write, print_and_throw): New functions.
251 (last_message): New global.
252 (throw_reason): Replace error_last_message with last_message.
253 (catch_exceptions_with_msg): Dup the message.
254 * exceptions.h (throw_verror, throw_vfatal, throw_vsilent):
255 Declare.
256
257 2005-01-13 Michael Snyder <msnyder@redhat.com>
258
259 * remote-st.c: Whitespace tweaks.
260 * remote-sim.c: Whitespace tweaks.
261 * remote-mips.c: Whitespace tweaks.
262 * pa64solib.[ch]: Whitespace tweaks.
263 * mdebugread.c: Whitespace tweaks.
264 * main.c: Whitespace tweaks.
265 * interps.c: Whitespace tweaks.
266 * infrun.c: Whitespace tweaks.
267 * infcmd.c: Whitespace tweaks.
268 * hpux-thread.c: Whitespace tweaks.
269 * hppa-hpux-tdep.c: Whitespace tweaks.
270 * gdbcore.h: Whitespace tweaks.
271 * gdbcmd.h: Whitespace tweaks.
272 * gdb-events[.c, .h, .sh]: Whitespace tweaks.
273 * corefile.c: Whitespace tweaks.
274 * completer.c: Whitespace tweaks.
275 * coff-solib.c: Whitespace tweaks.
276 * coff-solib.h: Whitespace tweaks.
277 * cli-out.c: Whitespace tweaks.
278 * breakpoint.c: Whitespace tweaks.
279 * cli/cli-interp.c: Tweak comments, per coding standard.
280
281 2005-01-13 Andrew Cagney <cagney@gnu.org>
282
283 * breakpoint.c (gdb_breakpoint_query): Update, use
284 catch_exceptions_with_msg.
285 (do_captured_breakpoint): Add uiout parameter.
286 (gdb_breakpoint): Update, use catch_exceptions_with_msg.
287 * mi/mi-main.c (mi_cmd_thread_select): Pass mi_error_message to
288 gdb_thread_select. Return MI_CMD_ERROR instead of
289 MI_CMD_CAUGHT_ERROR.
290 (mi_cmd_thread_list_ids): Ditto for gdb_list_thread_ids.
291 (enum captured_mi_execute_command_actions): Delete
292 EXECUTE_COMMAND_DISPLAY_ERROR.
293 (captured_mi_execute_command): Delete code handling
294 MI_CMD_CAUGHT_ERROR.
295 (mi_execute_command): Don't check for
296 EXECUTE_COMMAND_DISPLAY_ERROR.
297 * mi/mi-cmd-break.c (breakpoint_notify): Update call to
298 gdb_breakpoint_query.
299 (mi_cmd_break_insert): Pass mi_error_message to gdb_breakpoint.
300 * mi/mi-cmds.h (enum mi_cmd_result): Delete MI_CMD_CAUGHT_ERROR.
301 * gdb.h (gdb_thread_select, gdb_list_thread_ids)
302 (gdb_breakpoint, gdb_breakpoint_query): Add error_message
303 parameter.
304 * thread.c (thread_command): Update call.
305 (gdb_thread_select, gdb_list_thread_ids): Update, call
306 catch_exceptions_with_msg.
307
308 * mi/mi-main.c (mi_execute_command): Use catch_exception,
309 eliminate call to error_last_message.
310 (captured_mi_execute_command): Change return type to void.
311
312 2005-01-12 Andrew Cagney <cagney@gnu.org>
313
314 * exceptions.c (exception_none): New variable.
315 * Makefile.in: Update dependencies.
316 * interps.c: Include "exceptions.h".
317 (interpreter_exec_cmd, interp_exec): Update to return "struct
318 exception"
319 * exceptions.h (no_exception): Declare.
320 * tui/tui-interp.c (tui_exec): Update to return "struct exception"
321 * mi/mi-interp.c: Include "exceptions.h".
322 (mi_cmd_interpreter_exec, mi_interpreter_exec): Update to return
323 'struct exception".
324 * cli/cli-interp.c (cli_interpreter_exec, safe_execute_command)
325 (do_captured_execute_command): Update to use catch_exception.
326 * interps.h: Include "exceptions.h".
327 (interp_exec_ftype, interp_exec): Return "struct exception".
328
329 * exceptions.h (throw_reason): Rename throw_exception.
330 (enum errors, struct exception): Define.
331 (catch_exception_ftype): Define.
332 (catch_exception, throw_exception): Declare.
333 * exceptions.c (throw_exception): Rewrite.
334 (throw_reason): New function.
335 (struct catcher, catcher_state_machine): Replace "reason" with
336 "exception", delete "gdberrmsg".
337 (catch_exception): New function.
338 (catcher_init): Replace "gdberrmsg" parameter with "exception".
339 (catch_errors, catch_exceptions_with_msg): Re-implement passing
340 exception to catcher_init.
341 * utils.c (error_silent, error_stream_1): Use throw_reason.
342 (internal_verror, quit): Ditto.
343 * breakpoint.c (insert_catchpoint, break_command_1): Ditto.
344 * remote-fileio.c (remote_fileio_ctrl_c_signal_handler): Ditto.
345 * remote.c (remote_open_1, interrupt_query): Ditto.
346
347 2005-01-12 Mark Kettenis <kettenis@gnu.org>
348
349 * i386fbsd-tdep.c: Update copyright year. Include "gdbcore.h",
350 "regcache.h", "gdb_assert.h" and "bsd-uthread.h".
351 (i386fbsd_jmp_buf_reg_offset): New variable.
352 (i386fbsd_supply_uthread, i386fbsd_collect_uthread): New
353 functions.
354 (i386fbsdaout_init_abi): Set supply_uthread and collect_uthread.
355 * Makefile.in (i386fbsd-tdep.o): Update dependency.
356 * config/i386/fbsd.mt (TDEPFILES): Add bsd-uthread.o.
357
358 * bsd-uthread.h: New file.
359 * bsd-uthread.c: New file.
360 * Makefile.in (bsd_uthread_h): New variable.
361 (ALLDEPFILES): Add bsd-uthread.c.
362 (bsd-uthread.o): New dependency.
363
364 * solib.h Update copyright year.
365 (struct so_list): Forward declaration.
366 (solib_read_symbols): New prototype.
367 * solib.c (solib_read_symbols): New function.
368 (solib_add): Call solib_read_symbols to read in symbols.
369 (update_solib_list): Call observer_notify_solib_loaded.
370
371 * i386bsd-nat.c: Update copyright year. Don't include
372 <sys/param.h> and <sys/user.h>.
373 (register_u_addr, kernel_u_size): Remove functions.
374 * config/i386/obsd.mh (NAT_FILE): Remove.
375 * config/i386/obsdaout.mh (NAT_FILE): Set to solib.h.
376 * config/i386/nm-obsd.h: Remove file.
377
378 2005-01-12 Andrew Cagney <cagney@gnu.org>
379
380 * exceptions.c: Include "gdb_string.h".
381 (enum catcher_state, struct catcher): Define.
382 (current_catcher): New global, replaces catch_return;
383 (catch_return): Delete.
384 (throw_exception): Use current_catcher->buf;
385 (catcher_init, catcher_pop, catcher_state_machine): New functions.
386 (catcher): Delete.
387 (struct catch_errors_args): Delete.
388 (do_catch_errors): Delete.
389 (catch_exceptions): Replace body with call to
390 catch_exceptions_with_msg.
391 (catcher): Delete.
392 (catch_exceptions_with_msg, catch_errors): Re-implement using
393 catcher_state_machine.
394
395 * exceptions.h (enum return_reason, RETURN_MASK)
396 (RETURN_MASK_QUIT, RETURN_MASK_ERROR, RETURN_MASK_ALL)
397 (return_mask, throw_exception, catch_exceptions_ftype)
398 (catch_exceptions_with_msg, catch_errors_ftype, catch_errors)
399 (catch_command_errors_ftype, catch_command_errors): Move to
400 exceptions.h.
401 * exceptions.c, exceptions.h: New files.
402 * top.c: Do not include <setjmp.h>.
403 (SIGJMP_BUF, SIGSETJMP, SIGLONGJMP, catch_return)
404 (throw_exception, catcher, catch_exceptions)
405 (catch_exceptions_with_msg, struct catch_errors_args)
406 (do_catch_errors, catch_errors, struct captured_command_args)
407 (do_captured_command, catch_command_errors): Move to exceptions.c.
408 * wrapper.c, wince.c, win32-nat.c, utils.c: Include "exceptions.h".
409 * tui/tui-interp.c, top.c, thread.c, symmisc.c: Ditto.
410 * symfile-mem.c, stack.c, solib.c, rs6000-nat.c: Ditto.
411 * remote-sds.c, remote-mips.c, remote-fileio.c: Ditto.
412 * remote-e7000.c, objc-lang.c, ocd.c: Ditto.
413 * remote.c, nto-procfs.c, monitor.c, mi/mi-main.c: Ditto.
414 * main.c, m32r-rom.c, infrun.c, inf-loop.c: Ditto.
415 * hppa-hpux-tdep.c, frame.c, event-top.c, event-loop.c: Ditto.
416 * corelow.c, corefile.c, cli/cli-interp.c, breakpoint.c: Ditto.
417 * ada-valprint.c, ada-lang.c: Ditto.
418 * Makefile.in (HFILES_NO_SRCDIR, COMMON_OBS): Add exceptions.h and
419 exceptions.o. Update all dependencies.
420
421 2005-01-11 Mark Kettenis <kettenis@gnu.org>
422
423 * config/i386/nm-fbsd.h: Update copyright year.
424 Don't include "config/nm-bsd.h".
425 (KERNEL_U_SIZE): Remove macro.
426 (kernel_u_size): Remove prototype.
427
428 * config/vax/nbsdaout.mh (NAT_FILE): Remove.
429 * config/vax/nm-nbsdaout.h: Remove file.
430
431 2005-01-10 Elena Zannoni <ezannoni@redhat.com>
432
433 * MAINTAINERS: Remove self from sh/sh64 maintainership.
434
435 2005-01-10 Andrew Cagney <cagney@gnu.org>
436
437 * MAINTAINERS: List Andrew Cagney and Kevin Buettner as can commit
438 changes to PowerPC, and Andrew Cagney as lead PowerPC GNU/Linux
439 maintainer.
440
441 * MAINTAINERS: Hans-Peter Nilsson and Orjan Friberg can commit
442 changes to CRIS.
443
444 * MAINTAINERS: Remove "Maintenance Only". Spell out that CAN
445 COMMIT means can approve).
446
447 2005-01-10 Mark Kettenis <kettenis@gnu.org>
448
449 * vax-nat.c: Update copyright year. Include "inf-ptrace.h".
450 (vax_register_u_offset): Make statuc.
451 (_initialize_vax_nat): Construct and add target vector.
452 * config/vax/vax.mh (NATDEPFILES): Remove infptrace.o and
453 inftarg.o. Add inf-ptrace.o.
454 * Makefile.in (vax-nat.o): Update dependencies.
455
456 * inf-ptrace.h: Update copyright year. Sync comment with
457 inf-ptrace.c.
458 (inf_ptrace_trad_target): New prototype.
459 * inf-ptrace.c: Update copyright year. Include "regcache.h" and
460 "gdb_assert.h"
461 (inf_ptrace_target): Add comment.
462 (inf_ptrace+register_u_offset): New variable.
463 (inf_ptrace_fetch_register, inf_ptrace_fetch_registers)
464 (inf_ptrace_store_register, inf_ptrace_store_registers)
465 (inf_ptrace_trad_target): New functions.
466 * Makefile.in (inf-ptrace.o): Update dependencies.
467
468 2005-01-09 Mark Kettenis <kettenis@gnu.org>
469
470 * configure.ac: Provide prerequisite headers when checking
471 <link.h>, <sys/proc.h> and <sys/user.h>.
472 * configure: Regenerate.
473
474 2005-01-08 Mark Kettenis <kettenis@gnu.org>
475
476 * config/powerpc/obsd.mt (DEPRECATED_TM_FILE): Set to
477 tm-ppc-eabi.h instead of the removed tm-nbsd.h.
478
479 2005-01-07 Mark Kettenis <kettenis@gnu.org>
480
481 * config/ia64/tm-linux.h: Tweak comment. Update copyright year.
482 Don't include "tm-ia64.h".
483 * config/ia64/ia64.mt (DEPRECATED_TM_FILE): Remove.
484 * config/ia64/tm-ia64.h: Remove. Move contents ...
485 * ia64-tdep.h: ... here. Update copyright year.
486
487 2005-01-07 Andrew Cagney <cagney@gnu.org>
488
489 * configure.ac: Rename configure.in, require autoconf 2.59.
490 * configure: Re-generate.
491
492 * configure.tgt: Disable arm*-*-*, thumb*-*-*, strongarm*-*-*,
493 xscale-*-* and i[34567]86-*-netware* code adding rdi-share or nlm
494 to configdirs.
495
496 * configure.in: Replace configdirs with multiple references to
497 AC_CONFIG_SUBDIRS.
498 * configure: Re-generate.
499
500 2005-01-05 Andreas Schwab <schwab@suse.de>
501
502 * ia64-tdep.c: Include "osabi.h".
503 (native_find_global_pointer): Delete.
504 (ia64_find_global_pointer): Renamed from
505 generic_elf_find_global_pointer.
506 (FIND_GLOBAL_POINTER): Delete. Change all users to call
507 ia64_find_global_pointer instead.
508 (ia64_gdbarch_init): Call gdbarch_init_osabi. Remove references
509 to ia64_linux_sigcontext_register_address and
510 ia64_linux_write_pc. Don't set tdep->find_global_pointer.
511 (_initialize_ia64_tdep): Call gdbarch_register instead of
512 deprecated register_gdbarch_init.
513 (struct gdbarch_tdep): Remove find_global_pointer field and move
514 to ...
515 * ia64-tdep.h (struct gdbarch_tdep): ... here.
516 (ia64_linux_sigcontext_register_address): Remove declaration.
517 (ia64_linux_getunwind_table): Likewise.
518 (ia64_linux_write_pc): Likewise.
519 * ia64-linux-tdep.c: Include "osabi.h".
520 (ia64_linux_sigcontext_register_address): Make static.
521 (ia64_linux_write_pc): Likewise.
522 (ia64_linux_init_abi): New.
523 (_initialize_ia64_linux_tdep): New.
524 * Makefile.in (ia64-tdep.o, ia64-linux-tdep.o): Depend on
525 $(osabi_h).
526
527 2005-01-05 Kevin Buettner <kevinb@redhat.com>
528
529 * ia64-tdep.c (ia64_gdbarch_init): Eliminate dependency on
530 functions in ia64-aix-tdep.c.
531 * ia64-tdep.h (ia64_aix_sigcontext_register_address): Remove
532 function defined in ia64-aix-tdep.c.
533 * ia64-aix-tdep.c: Remove file.
534 * config/ia64/linux.mt (TDEPFILES): Remove ia64-aix-tdep.o from
535 this list.
536 * Makefile.in (ia64-aix-tdep.o): Delete.
537
538 2005-01-05 Baurjan Ismagulov <ibr@ata.cs.hun.edu.tr>
539
540 Committed by Andrew Cagney.
541 * ada-valprint.c, aix-thread.c, alpha-nat.c: I18n markup.
542 * alphabsd-nat.c, alphanbsd-tdep.c, amd64-linux-nat.c: I18n markup.
543 * amd64-tdep.c, amd64bsd-nat.c, amd64fbsd-nat.c: I18n markup.
544 * arch-utils.c, arm-linux-nat.c, arm-tdep.c: I18n markup.
545 * armnbsd-nat.c, armnbsd-tdep.c, auxv.c, avr-tdep.c: I18n markup.
546 * aix-thread.c (_initialize_aix_thread): Get rid of the
547 deprecated_add_show_from_set call.
548 * alpha-tdep.c (_initialize_alpha_tdep): Ditto.
549 * arm-tdep.c (_initialize_arm_tdep): Ditto.
550 * command.h (add_setshow_enum_cmd): Add arguments for returning
551 new list elements.
552 * cli/cli-decode.c (add_setshow_enum_cmd): Ditto.
553 * mips-tdep.c (_initialize_mips_tdep): Modify calls to
554 add_setshow_enum_cmd.
555
556 2005-01-04 Mark Kettenis <kettenis@gnu.org>
557
558 * configure.host (ia64-*-aix*): Remove.
559 * configure.tgt (ia64-*-aix*): Remove.
560 * config/ia64/aix.mh: Remove file.
561 * config/ia64/aix.mt: Remove file.
562 * config/ia64/tm-aix.h: Remove file.
563 * ia64-aix-nat.c: Remove file.
564 * Makefile.in (ia64-aix-nat.o): Remove dependency.
565
566 * config/m88k/obsd.mh (NATDEPFILES): Really remove inf-child.o.
567 Add back inf-ptrace.o.
568
569 2005-01-04 Andrew Cagney <cagney@gnu.org>
570
571 * version.in: Change format from 6.3.50_2005-01-04-cvs to
572 6.3.50.20050104-cvs.
573
574 2005-01-04 Andreas Schwab <schwab@suse.de>
575
576 * breakpoint.c (break_command_1): Always free err_msg before
577 returning when an exception was caught.
578
579 2005-01-01 Joel Brobecker <brobecker@gnat.com>
580
581 * hppa-tdep.c (prologue_inst_adjust_sp): Fix small confusion
582 in register number for addil instruction.
583
584 For older changes see ChangeLog-2004.
585 \f
586 Local Variables:
587 mode: change-log
588 left-margin: 8
589 fill-column: 74
590 version-control: never
591 End:
This page took 0.041177 seconds and 5 git commands to generate.