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