* win32-nat.c (ctrl_c_handler): New function.
[binutils-gdb.git] / gdb / ChangeLog
1 2009-03-22 Nicolas Roche <roche@adacore.com>
2 Christopher Faylor <me+cygwin@cgf.cx>
3
4 * win32-nat.c (ctrl_c_handler): New function.
5 (win32_wait): Register ctrl_c_handler as Ctrl-C handler if the inferior
6 is run in a separate console.
7
8 2009-03-22 Christopher Faylor <me+cygwin@cgf.cx>
9
10 * windows-nat.c (DebugActiveProcessStop): Implement macro wraparound
11 for dynamically loaded function.
12 (DebugBreakProcess): Ditto.
13 (DebugSetProcessKillOnExit): Ditto.
14 (EnumProcessModules): Ditto.
15 (GetModuleFileNameExA): Ditto.
16 (GetModuleInformation): Ditto.
17 (DebugActiveProcessStop): Rename and define placeholder for address of
18 dynamically loaded function. for dynamically loaded function.
19 (DebugBreakProcess): Ditto.
20 (DebugSetProcessKillOnExit): Ditto.
21 (EnumProcessModules): Ditto.
22 (GetModuleFileNameExA): Ditto.
23 (GetModuleInformation): Ditto.
24 (psapi_loaded): Delete.
25 (get_module_name): Don't check psapi_loaded, just rely on the fact that
26 dynamically loaded functions will return failure if they weren't
27 previously found.
28 (has_detach_ability): Delete.
29 (windows_attach): Remove call to has_detach_ability (). Just rely on
30 functions being callable.
31 (bad_DebugActiveProcessStop): Define.
32 (bad_DebugBreakProcess): Ditto.
33 (bad_DebugSetProcessKillOnExit): Ditto.
34 (bad_EnumProcessModules): Ditto.
35 (bad_GetModuleFileNameExA): Ditto.
36 (bad_GetModuleInformation): Ditto.
37 (_initialize_loadable): Rename from _initialize_psapi. Initialize all
38 dynamic storage here, setting nonexistent functions to dummy static
39 functions which always return error.
40
41 2009-03-22 Pedro Alves <pedro@codesourcery.com>
42
43 * mi/mi-interp.c (mi_interpreter_init): Attach mi_about_to_proceed
44 to the about_to_proceed observer notification.
45 (mi_about_to_proceed): New.
46 (mi_on_resume): Only output ^running and the prompt here if the
47 target was proceeded.
48 * breakpoint.c (breakpoint_proceeded): New static.
49 (breakpoint_about_to_proceed): New.
50 (_initialize_breakpoints): Attach breakpoint_about_to_proceed to
51 the about_to_proceed observer notification.
52 * inferior.h (breakpoint_proceeded): Delete declaration.
53 * infrun.c (clear_proceed_status): Don't set breakpoint_proceeded.
54 Notify the about_to_proceed observers.
55 (struct inferior_status): Delete breakpoint_proceeded member.
56 (save_inferior_status): Don't save it.
57 (restore_inferior_status): Don't restore it.
58 * mi-main.h (mi_proceeded): Declare.
59 * mi/mi-main.c (mi_cmd_execute): Clear mi_proceeded before running
60 a command.
61
62 2009-03-22 Pedro Alves <pedro@codesourcery.com>
63
64 * gdbthread.h (struct thread_info): Add in_infcall member.
65 * infcall.c (run_inferior_call): Save, set and restore in_infcall.
66 Remove reverences to suppress_resume_observer. Refresh
67 `call_thread' after returning from `proceed'.
68 * infcmd.c (suppress_resume_observer): Delete.
69 * inferior.h (suppress_resume_observer): Delete declaration.
70 * mi/mi-interp.c (mi_on_resume): Suppress output while calling an
71 inferior function.
72 * thread.c (set_running): Remove references to
73 suppress_resume_observer.
74 * infrun.c (struct inferior_status): Add in_infcall member.
75 (save_inferior_status): Save it.
76 (restore_inferior_status): Restore it.
77
78 2009-03-22 Pedro Alves <pedro@codesourcery.com>
79
80 * infcall.c (run_inferior_call): Remove references to
81 suppress_stop_observer.
82 * infcmd.c (suppress_stop_observer): Delete.
83 (finish_command_continuation): Remove NOTE. Don't clear
84 suppress_stop_observer anymore.
85 (finish_command_continuation_free_arg): Likewise.
86 (finish_forward): Remove references to suppress_stop_observer.
87 Call normal_stop observer if we haven't already.
88 * inferior.h (suppress_stop_observer): Delete.
89 * infrun.c (normal_stop): When deciding to suppress the
90 normal_stop observer, check for proceed_to_finish instead of
91 suppress_stop_observer.
92
93 2009-03-22 Pedro Alves <pedro@codesourcery.com>
94
95 * symfile.c (symfile_relocate_debug_section): Remove check for
96 SEC_DEBUGGING.
97
98 2009-03-21 Jan Kratochvil <jan.kratochvil@redhat.com>
99 Jim Blandy <jimb@red-bean.com>
100 Thiago Jung Bauermann <bauerman@br.ibm.com>
101 Tom Tromey <tromey@redhat.com>
102
103 Miscellaneous fixes to the Python code.
104 * python/python-cmd.c (cmdpy_init): Accept keyword
105 arguments.
106 * python/python-value.c (valpy_string): Accept keyword
107 arguments.
108 (valpy_binop): Use `break' to exit from the TRY_CATCH block.
109 Do not call value_to_value_object on NULL RES_VAL.
110 (value_object_methods): Change `string' entry to also accept
111 keyword arguments.
112 (convert_value_from_python): Return a copy of the value if obj is
113 a gdb.Value object.
114 (value_object_methods): Mark the `string' method as accepting
115 keywords, and show method "prototype" in the doc string.
116 * python/python.c (get_parameter): Don't return inside a
117 TRY_CATCH.
118
119 2009-03-20 Tom Tromey <tromey@redhat.com>
120
121 Add support for convenience functions in Python.
122 * Makefile.in (SUBDIR_PYTHON_OBS): Add python-function.o.
123 (SUBDIR_PYTHON_SRCS): Add python-function.c.
124 (python-function.o): New target.
125 * eval.c: Include "python/python.h" and <ctype.h>.
126 (evaluate_subexp_standard): Handle values of type
127 TYPE_CODE_INTERNAL_FUNCTION.
128 * gdbtypes.h (type_code): Add TYPE_CODE_INTERNAL_FUNCTION.
129 * parse.c (write_exp_string): Remove duplicate word in comment.
130 * python/python-function.c: New file.
131 * python/python-internal.h (gdbpy_initialize_functions): Add
132 prototype.
133 * python/python.c (_initialize_python): Call
134 gdbpy_initialize_functions.
135 * valprint.c (value_check_printable): Handle values of type
136 TYPE_CODE_INTERNAL_FUNCTION.
137 * value.c: Include "cli/cli-decode.h".
138 (internal_function): New struct.
139 (functionlist, internal_fn_type): New static variables.
140 (lookup_only_internalvar,
141 lookup_internalvar): Add const qualifier to name argument.
142 (create_internalvar): Likewise. Initialize new field.
143 (set_internal_var): Fix typo in comment. Don't allow assignment
144 to canonical variable.
145 (value_create_internal_function, value_internal_function_name,
146 call_internal_function, function_command, function_destroyer,
147 add_internal_function): New functions.
148 (_initialize_values): Create `function' placeholder command.
149 Initialize internal_fn_type.
150 * value.h (lookup_only_internalvar, create_internalvar,
151 lookup_internalvar): Add const qualifier to name argument.
152 (internal_function_fn, add_internal_function, call_internal_function,
153 value_internal_function_name): Add prototypes.
154 (struct internalvar) <canonical>: New field.
155
156 2009-03-20 Tom Tromey <tromey@redhat.com>
157
158 * c-lang.c (evaluate_subexp_c): Call check_typedef.
159
160 2009-03-20 Tom Tromey <tromey@redhat.com>
161 Julian Brown <julian@codesourcery.com>
162
163 PR i18n/7220, PR i18n/7821, PR exp/8815, PR exp/9103,
164 PR i18n/9401, PR exp/9613:
165 * NEWS: Update
166 * value.h (value_typed_string): Declare.
167 (val_print_string): Update.
168 * valprint.h (print_char_chars): Update.
169 * valprint.c (print_char_chars): Add type argument. Update.
170 (val_print_string): Likewise.
171 * valops.c (value_typed_string): New function.
172 * utils.c (host_char_to_target): New function.
173 (parse_escape): Use host_char_to_target, host_hex_value. Update.
174 Remove '^' case.
175 (no_control_char_error): Remove.
176 * typeprint.c (print_type_scalar): Update.
177 * scm-valprint.c (scm_scmval_print): Update.
178 * scm-lang.h (scm_printchar, scm_printstr): Update.
179 * scm-lang.c (scm_printchar): Add type argument.
180 (scm_printstr): Likewise.
181 * printcmd.c (print_formatted): Update.
182 (print_scalar_formatted): Update.
183 (printf_command) <wide_string_arg, wide_char_arg>: New constants.
184 Handle '%lc' and '%ls'.
185 * parser-defs.h (struct typed_stoken): New type.
186 (struct stoken_vector): Likewise.
187 (write_exp_string_vector): Declare.
188 * parse.c (write_exp_string_vector): New function.
189 * p-valprint.c (pascal_val_print): Update.
190 * p-lang.h (is_pascal_string_type, pascal_printchar,
191 pascal_printstr): Update.
192 * p-lang.c (is_pascal_string_type): Remove 'char_size' argument.
193 Add 'char_type' argument.
194 (pascal_emit_char): Add type argument.
195 (pascal_printchar): Likewise.
196 (pascal_printstr): Likewise.
197 * objc-lang.c (objc_emit_char): Add type argument.
198 (objc_printchar): Likewise.
199 (objc_printstr): Likewise.
200 * macroexp.c (get_character_constant): Handle unicode characters.
201 Use c_parse_escape.
202 (get_string_literal): Handle unicode strings. Use
203 c_parse_escape.
204 * m2-valprint.c (print_unpacked_pointer): Update.
205 (m2_print_array_contents): Update.
206 (m2_val_print): Update.
207 * m2-lang.c (m2_emit_char): Add type argument.
208 (m2_printchar): Likewise.
209 (m2_printstr): Likewise.
210 * language.h (struct language_defn) <la_printchar>: Add type
211 argument.
212 <la_printstr, la_emitchar>: Likewise.
213 (LA_PRINT_CHAR): Likewise.
214 (LA_PRINT_STRING): Likewise.
215 (LA_EMIT_CHAR): Likewise.
216 * language.c (unk_lang_emit_char): Add type argument.
217 (unk_lang_printchar): Likewise.
218 (unk_lang_printstr): Likewise.
219 * jv-valprint.c (java_val_print): Update.
220 * jv-lang.c (java_emit_char): Add type argument.
221 * f-valprint.c (f_val_print): Update.
222 * f-lang.c (f_emit_char): Add type argument.
223 (f_printchar): Likewise.
224 (f_printstr): Likewise.
225 * expprint.c (print_subexp_standard): Update.
226 * charset.h (target_wide_charset): Declare.
227 (c_target_char_has_backslash_escape, c_parse_backslash,
228 host_char_print_literally, host_char_to_target,
229 target_char_to_host, target_char_to_control_char): Remove.
230 (enum transliterations): New type.
231 (convert_between_encodings): Declare.
232 (HOST_ESCAPE_CHAR): New define.
233 (host_letter_to_control_character, host_hex_value): Declare.
234 (enum wchar_iterate_result): New enum.
235 (struct wchar_iterator): Declare.
236 (make_wchar_iterator, make_cleanup_wchar_iterator, wchar_iterator,
237 wchar_push_back): Declare.
238 * charset-list.h: New file.
239 * c-valprint.c (textual_name): New function.
240 (textual_element_type): Handle wide character types.
241 (c_val_print): Pass original type to textual_element_type. Handle
242 wide character types.
243 (c_value_print): Use textual_element_type. Pass original type of
244 value to val_print.
245 * c-lang.h (enum c_string_type): New type.
246 (c_printchar, c_printstr): Update.
247 * c-lang.c (classify_type): New function.
248 (print_wchar): Likewise.
249 (c_emit_char): Add type argument. Handle wide characters.
250 (c_printchar): Likewise.
251 (c_printstr): Add type argument. Handle wide and multibyte
252 character sets.
253 (convert_ucn): New function.
254 (emit_numeric_character): Likewise.
255 (convert_octal): Likewise.
256 (convert_hex): Likewise.
257 (ADVANCE): New macro.
258 (convert_escape): New function.
259 (parse_one_string): Likewise.
260 (evaluate_subexp_c): Likewise.
261 (exp_descriptor_c): New global.
262 (c_language_defn): Use exp_descriptor_c.
263 (cplus_language_defn): Likewise.
264 (asm_language_defn): Likewise.
265 (minimal_language_defn): Likewise.
266 (charset_for_string_type): New function.
267 * c-exp.y (%union): Add 'svec' and 'tsval'.
268 (CHAR): New token.
269 (exp): Add CHAR production.
270 (string_exp): Rewrite.
271 (exp) <string_exp>: Rewrite.
272 (tempbuf): Now global.
273 (tempbuf_init): New global.
274 (parse_string_or_char): New function.
275 (yylex) <tempbuf>: Now global.
276 <tokptr, tempbufindex, tempbufsize, token_string, class_prefix>:
277 Remove.
278 Handle 'u', 'U', and 'L' prefixes. Call parse_string_or_char.
279 (c_parse_escape): New function.
280 * auxv.c (fprint_target_auxv): Update.
281 * ada-valprint.c (ada_emit_char): Add type argument.
282 (ada_printchar): Likewise.
283 (ada_print_scalar): Update.
284 (printstr): Add type argument. Update calls to ada_emit_char.
285 (ada_printstr): Add type argument.
286 (ada_val_print_array): Update.
287 (ada_val_print_1): Likewise.
288 * ada-lang.c (emit_char): Add type argument.
289 * ada-lang.h (ada_emit_char, ada_printchar, ada_printstr): Add
290 type arguments.
291 * gdb_locale.h: Include langinfo.h.
292 * charset.c (_initialize_charset): Set default host charset from
293 the locale. Don't register charsets. Add target-wide-charset
294 commands. Call find_charset_names.
295 (struct charset, struct translation): Remove.
296 (GDB_DEFAULT_HOST_CHARSET): Remove.
297 (GDB_DEFAULT_TARGET_WIDE_CHARSET): New define.
298 (target_wide_charset_name): New global.
299 (show_host_charset_name): Handle "auto".
300 (show_target_wide_charset_name): New function.
301 (host_charset_enum, target_charset_enum): Remove.
302 (charset_enum): New global.
303 (all_charsets, register_charset, lookup_charset, all_translations,
304 register_translation, lookup_translation): Remove.
305 (simple_charset, ascii_print_literally, ascii_to_control): Remove.
306 (iso_8859_print_literally, iso_8859_to_control,
307 iso_8859_family_charset): Remove.
308 (ebcdic_print_literally, ebcdic_to_control,
309 ebcdic_family_charset): Remove.
310 (struct cached_iconv, check_iconv_cache, cached_iconv_convert,
311 register_iconv_charsets): Remove.
312 (target_wide_charset_be_name, target_wide_charset_le_name): New
313 globals.
314 (identity_either_char_to_other): Remove.
315 (set_be_le_names, validate): New functions.
316 (backslashable, backslashed, represented): Remove.
317 (default_c_target_char_has_backslash_escape): Remove.
318 (default_c_parse_backslash, iconv_convert): Remove.
319 (ascii_to_iso_8859_1_table, ascii_to_ebcdic_us_table,
320 ascii_to_ibm1047_table, iso_8859_1_to_ascii_table,
321 iso_8859_1_to_ebcdic_us_table, iso_8859_1_to_ibm1047_table,
322 ebcdic_us_to_ascii_table, ebcdic_us_to_iso_8859_1_table,
323 ebcdic_us_to_ibm1047_table, ibm1047_to_ascii_table,
324 ibm1047_to_iso_8859_1_table, ibm1047_to_ebcdic_us_table): Remove.
325 (table_convert_char, table_translation, simple_table_translation):
326 Remove.
327 (current_host_charset, current_target_charset,
328 c_target_char_has_backslash_escape_func,
329 c_target_char_has_backslash_escape_baton): Remove.
330 (c_parse_backslash_func, c_parse_backslash_baton): Remove.
331 (host_char_to_target_func, host_char_to_target_baton): Remove.
332 (target_char_to_host_func, target_char_to_host_baton): Remove.
333 (cached_iconv_host_to_target, cached_iconv_target_to_host):
334 Remove.
335 (lookup_charset_or_error, check_valid_host_charset): Remove.
336 (set_host_and_target_charsets): Remove.
337 (set_host_charset, set_target_charset): Remove.
338 (set_host_charset_sfunc, set_target_charset_sfunc): Rewrite.
339 (set_target_wide_charset_sfunc): New function.
340 (show_charset): Print target wide character set.
341 (host_charset, target_charset): Rewrite.
342 (target_wide_charset): New function.
343 (c_target_char_has_backslash_escape): Remove.
344 (c_parse_backslash): Remove.
345 (host_letter_to_control_character): New function.
346 (host_char_print_literally): Remove.
347 (host_hex_value): New function.
348 (target_char_to_control_char): Remove.
349 (cleanup_iconv): New function.
350 (convert_between_encodings): New function.
351 (target_char_to_host): Remove.
352 (struct wchar_iterator): Define.
353 (make_wchar_iterator, make_cleanup_wchar_iterator, wchar_iterator,
354 wchar_push_back): New functions.
355 (do_cleanup_iterator): New function.
356 (char_ptr): New typedef.
357 (charsets): New global.
358 (add_one, find_charset_names): New functions.
359 (default_charset_names): New global.
360 (auto_host_charset_name): Likewise.
361 * aclocal.m4, config.in, configure: Rebuild.
362 * configure.ac: Call AM_LANGINFO_CODESET.
363 (GDB_DEFAULT_HOST_CHARSET): Default to UTF-8.
364 (AM_ICONV): Invoke earlier.
365 * acinclude.m4: Include codeset.m4. Subst LIBICONV_INCLUDE and
366 LIBICONV_LIBDIR. Check for libiconv in build tree.
367 * Makefile.in (LIBICONV_LIBDIR, LIBICONV_INCLUDE): New macros.
368 (INTERNAL_CFLAGS_BASE): Add LIBICONV_INCLUDE.
369 (INTERNAL_LDFLAGS): Add LIBICONV_LIBDIR.
370 * gdb_obstack.h (obstack_grow_wstr): New define.
371 * gdb_wchar.h: New file.
372 * defs.h: Include it.
373
374 2009-03-20 Tom Tromey <tromey@redhat.com>
375 Jan Kratochvil <jan.kratochvil@redhat.com>
376
377 * dwarf2read.c (process_die): Handle DW_TAG_typedef.
378 * eval.c (evaluate_subexp_standard) <OP_TYPE>: Strip a single
379 typedef.
380 * ada-lang.c (decode_packed_array_type): Call CHECK_TYPEDEF on the
381 SYMBOL_TYPE result.
382 * ada-typeprint.c (print_array_type): Do the NULL check
383 unconditionally.
384
385 2009-03-19 Tom Tromey <tromey@redhat.com>
386
387 * utils.c (do_obstack_free): New function.
388 (make_cleanup_obstack_free): Likewise.
389 * defs.h (make_cleanup_obstack_free): Declare.
390
391 2009-03-18 Doug Evans <dje@google.com>
392
393 * linux-nat.c (linux_nat_find_memory_regions): Result of PIDGET is an
394 int, not a long long.
395 (linux_nat_info_proc_cmd): Store pid in long instead of long long.
396
397 * expprint.c (dump_raw_expression): Print note if non-NULL.
398
399 * printcmd.c (display_uses_solib_p): Redo loop, scan element list
400 backwards.
401
402 2009-03-18 Nathan Sidwell <nathan@codesourcery.com>
403
404 * Makefile.in: Update license to GPLv3.
405 * ada-exp.y: Update license to GPLv3.
406 * ada-lex.l: Update license to GPLv3.
407 * c-exp.y: Update license to GPLv3.
408 * cp-name-parser.y: Update license to GPLv3.
409 * darwin-nat-info.c: Update license to GPLv3.
410 * f-exp.y: Update license to GPLv3.
411 * gdb_thread_db.h: Update license to GPLv3.
412 * hppanbsd-nat.c: Update license to GPLv3.
413 * hppanbsd-tdep.c: Update license to GPLv3.
414 * hppaobsd-tdep.c: Update license to GPLv3.
415 * jv-exp.y: Update license to GPLv3.
416 * m2-exp.y: Update license to GPLv3.
417 * objc-exp.y: Update license to GPLv3.
418 * p-exp.y: Update license to GPLv3.
419 * reply_mig_hack.awk: Update license to GPLv3.
420 * reverse.c: Update license to GPLv3.
421 * xtensa-xtregs.c: Update license to GPLv3.
422
423 2009-03-18 Pedro Alves <pedro@codesourcery.com>
424
425 * remote.c (remote_close): Don't call generic_mourn_inferior.
426 (remote_mourn_1): Call generic_mourn_inferior after closing the
427 target.
428
429 2009-03-18 Pedro Alves <pedro@codesourcery.com>
430
431 * remote.c (remote_start_remote): Add missing call to
432 init_wait_for_inferior in non-stop mode.
433
434 2009-03-18 Pedro Alves <pedro@codesourcery.com>
435
436 * breakpoint.c (bpstat_should_step): Only consider software
437 watchpoints that have a location.
438
439 2009-03-17 Joel Brobecker <brobecker@adacore.com>
440
441 Add a target_ops parameter to the to_kill method in struct target_ops.
442
443 * target.h (struct target_ops): Add a "target_ops *" parameter to
444 method to_kill.
445 (target_kill): Remove macro. Add declaration.
446 * target.c (debug_to_kill): Delete, no longer necessary.
447 (target_kill): New function.
448 (update_current_target): Stop inheriting the to_kill method.
449 Do not de_fault it to no_process either.
450 (setup_target_debug): Do not set current_target.to_kill.
451 * gnu-nat.c, go32-nat.c, hpux-thread.c, inf-ptrace.c, inf-ttrace.c,
452 linux-nat.c, monitor.c, nto-procfs.c, procfs.c, remote-m32r-sdi.c,
453 remote-mips.c, remote-sim.c, remote.c, windows-nat.c: Update
454 accordingly.
455
456 2009-03-17 Doug Evans <dje@google.com>
457
458 * amd64-linux-nat.c (si_timerid,si_overrun): Provide definition for
459 glibc 2.3.2 and earlier.
460
461 2009-03-17 Joel Brobecker <brobecker@adacore.com>
462
463 * frame.c (get_prev_frame_1): Do not perform the inner_frame
464 sanity check if this_frame is not NORMAL.
465 (frame_id_inner): Update the description of this function.
466
467 2009-03-17 Hui Zhu <teawater@gmail.com>
468
469 * stack.c: Change the introduce of "disassemble-next-line".
470
471 2009-03-17 Pedro Alves <pedro@codesourcery.com>
472
473 * mi/mi-main.h (mi_print_timing_maybe): Add strict prototype,
474 declare as extern.
475
476 2009-03-17 Hui Zhu <teawater@gmail.com>
477
478 * stack.c: Include valprint.h.
479 (disassemble_next_line): New enum.
480 (show_disassemble_next_line): New function. Show the current
481 value of disassemble-next-line.
482 (gdb_disassembly_stub_args): New struct for argument passing
483 between function do_gdb_disassembly and function
484 gdb_disassembly_stub.
485 (gdb_disassembly_stub): New function. Helper for
486 gdb_disassembly.
487 (do_gdb_disassembly): New function. Use TRY_CATCH to catch
488 the exception from the gdb_disassembly because it will be
489 broken by filter sometime.
490 (print_frame_info): If disassemble-next-line is set to auto
491 or on and doesn't have the line debug messages for $pc,
492 output the next instruction.
493 If disassemble-next-line is set to on and there is line debug
494 messages, output assembly codes for next line.
495 (_initialize_stack): Make the "set disassemble-next-line"
496 command an auto-boolean command. Change its class to
497 class_stack. Place it in the top level set list. Extend help
498 to describe the auto mode.
499
500 2009-03-17 Pedro Alves <pedro@codesourcery.com>
501
502 * infrun.c (normal_stop): Don't overwrite old_chain.
503
504 2009-03-16 Joel Brobecker <brobecker@adacore.com>
505
506 * remote-mips.c (mips_load): Replace call to regcache_set_valid_p,
507 which is undefined, by call to regcache_invalidate, which should
508 do what the original author wanted to do.
509
510 2009-03-16 Joel Brobecker <brobecker@adacore.com>
511
512 * remote-mips.c (mips_mourn_inferior): Add missing ops parameter.
513 (mips_create_inferior): Likewise.
514
515 2009-03-16 Joel Brobecker <brobecker@adacore.com>
516
517 * go32-nat.c (go32_create_inferior): Add missing ops parameter.
518
519 2009-03-16 Joel Brobecker <brobecker@adacore.com>
520
521 * darwin-nat.c (darwin_resume): Fix a compiler warning when
522 building on x86_64-darwin.
523
524 2009-03-16 Tristan Gingold <gingold@adacore.com>
525
526 * configure.tgt: Add handling for x86_64-darwin.
527
528 2009-03-16 Jan Kratochvil <jan.kratochvil@redhat.com>
529
530 * auxv.c (fprint_target_auxv): New TAG for AT_RANDOM.
531
532 2009-03-15 Joel Brobecker <brobecker@adacore.com>
533
534 * aix-thread.c (aix_thread_thread_alive, aix_thread_pid_to_str):
535 Use the ops parameter to get to the target beneath, rather than
536 using the current_target global. Using the current_target global
537 was an unintended accident.
538
539 2009-03-15 Joel Brobecker <brobecker@adacore.com>
540
541 Fix an error happening while loading symbols from a core file
542 (on AIX).
543
544 * rs6000-nat.c (xcoff_relocate_symtab): Use target_has_execution
545 to detect whether we're debugging a core file or not.
546
547 2009-03-15 Joel Brobecker <brobecker@adacore.com>
548
549 Modernize the aix-thread later by getting rid of the base_target
550 global. This brings back to life the AIX port which was otherwise
551 crashing all the time.
552
553 * aix-thread.c (base_target): Delete.
554 (pd_enable): Do not set base_target.
555 (aix_thread_attach): Use find_target_beneath instead of base_target.
556 (aix_thread_detach, aix_thread_resume, aix_thread_wait)
557 (aix_thread_fetch_registers, aix_thread_store_registers),
558 (aix_thread_xfer_partial, aix_thread_mourn_inferior)
559 (aix_thread_thread_alive, aix_thread_pid_to_str): Likewise.
560 (aix_thread_kill): Delete. Does not seem necessary.
561 (init_aix_thread_ops): Do not set aix_thread_ops.to_kill.
562
563 2009-03-15 Jan Kratochvil <jan.kratochvil@redhat.com>
564
565 * stack.c (return_command <retval_exp>): New variables retval_expr
566 and old_chain. Inline parse_and_eval to initialize retval_expr. Check
567 RETVAL_EXPR for UNOP_CAST and set RETURN_TYPE to the RETURN_VALUE type
568 if RETURN_TYPE is NULL.
569
570 >>>>>>> 1.10280
571 2009-03-14 Pedro Alves <pedro@codesourcery.com>
572
573 * remote.c (PACKET_qAttached): New.
574 (remote_query_attached): New.
575 (remote_add_inferior): Add new `attached' argument. Handle it.
576 (remote_notice_new_inferior, remote_start_remote): Adjust to pass
577 -1 to remote_add_inferior in new parameter.
578 (extended_remote_attach_1): Adjust to pass 1 to
579 remote_add_inferior in the new parameter.
580 (extended_remote_create_inferior_1): Adjust to pass 0 to
581 remote_add_inferior in the new parameter.
582 (_initialize_remote): Add "set/show remote query-attached-packet"
583 commands.
584
585 2009-03-13 Tom Tromey <tromey@redhat.com>
586
587 * symtab.c (lookup_symbol_in_language): Use a cleanup.
588
589 2009-03-13 Doug Evans <dje@google.com>
590
591 * exceptions.h: Clean up some comments on catch_exceptions usage.
592 * exceptions.c: Ditto. Plus mark catch_errors as superseded by
593 catch_exceptions.
594
595 2009-02-17 Joel Brobecker <brobecker@adacore.com>
596
597 The following patch helps getting rid of a warning inside solib-som.c.
598
599 * source.c (source_full_path_of): Constify parameter filename.
600 * defs.h (source_full_path_of): Update declaration accordingly.
601
602 2009-03-12 Joel Brobecker <brobecker@adacore.com>
603
604 * ada-lang.c (ada_evaluate_subexp): Merge case BINOP_REM and
605 BINOP_MOD cases with the handling of case BINOP_DIV and BINOP_MUL.
606 Remove useless op value checks when EVAL_AVOID_SIDE_EFFECTS.
607
608 2009-03-12 Joel Brobecker <brobecker@adacore.com>
609
610 * ada-lang.c (ada_evaluate_subexp) <BINOP_DIV>: make sure to
611 promote the operands when noside is EVAL_AVOID_SIDE_EFFECTS.
612
613 2009-03-12 Joel Brobecker <brobecker@adacore.com>
614
615 * ada-tasks.c (ada_task_is_alive): Move up and make static.
616 * ada-lang.h (ada_task_is_alive): Remove declaration.
617
618 2009-03-12 Jerome Guitton <guitton@adacore.com>
619
620 * ada-lang.c (ada_delta): Change the type of numerators and
621 denominators to DOUBLEST, as they may not fit into a long.
622 (scaling_factor): Ditto.
623
624 2009-03-12 Jerome Guitton <guitton@adacore.com>
625
626 * language.c (lang_bool_type): Set lai->bool_type_symbol to NULL.
627
628 2009-03-12 Joel Brobecker <brobecker@adacore.com>
629
630 * ada-lang.c (ada_evaluate_subexp) [OP_VAR_VALUE]: For tagged
631 types, if we are unable to determine the actual symbol type
632 from its tag, then use the static approximation instead.
633
634 2009-03-12 Joel Brobecker <brobecker@adacore.com>
635
636 Fix crash printing packed record with packed array.
637
638 * ada-lang.c (ada_modulus_from_name): New function.
639 (ada_modulus): In the case where the type length is bigger than
640 the size of the type used to hold the bounds, try determining
641 the modulus from the type name.
642 (ada_value_primitive_packed_val): Fix bug in the computation of
643 ntarg causing an out-of-buffer invalid access.
644
645 2009-03-12 Joel Brobecker <brobecker@adacore.com>
646
647 Fix segfault when printing short_integer'last.
648
649 * ada-lang.c (ada_find_any_type): Search in the primitive types
650 if a symbol could not be found.
651
652 2009-03-12 Joel Brobecker <brobecker@adacore.com>
653
654 * ada-tasks.c (task_states,long_task_states): Add new states
655 Activating and Acceptor_Delay_Sleep. Update the description
656 of state Acceptor_Sleep.
657
658 2009-03-12 Jonas Maebe <jonas.maebe@elis.ugent.be> (obvious change)
659
660 Fix a build failure on Darwin following some changes in
661 the profile of some target_ops methods.
662
663 * darwin-nat.c (darwin_kill_inferior): Add target_ops parameter
664 where missing.
665 (darwin_stop_inferior, darwin_detach): Likewise.
666
667 2009-03-12 Vladimir Prus <vladimir@codesourcery.com>
668
669 Include token in ^running notification for CLI commands.
670
671 * mi/mi-main.c (mi_execute_command): Set current_token here.
672 (mi_cmd_execute): Do not set current_token here.
673
674 2009-03-12 Vladimir Prus <vladimir@codesourcery.com>
675
676 Fix MI timings.
677
678 * mi/mi-main.c (mi_print_timing_maybe): New.
679 (captured_mi_execute_command): Simplify. Output timings to
680 CLI commands, too.
681 (mi_execute_async_cli_command): Do not print timings.
682 * mi/mi-main.h (mi_print_timing_maybe): Declare.
683 * mi/mi-interp.c (mi_on_normal_stop): Call mi_print_timing_maybe.
684
685 2009-03-12 Jerome Guitton <guitton@adacore.com>
686
687 * xcoffread.c (process_linenos): Check if the line in the
688 include table refers to the main source file and, if so,
689 add them to the main subfile.
690
691 2009-03-12 Joel Brobecker <brobecker@adacore.com>
692
693 Fix a build failure on AIX introduced after a change in the profile
694 of some of the "methods" in the target_ops structure.
695 * aix-thread.c: Add missing target_ops parameter throughout.
696
697 Implement Ada task switching on AIX.
698 * aix-thread.c (aix_thread_get_ada_task_ptid): New function.
699 (init_aix_thread_ops): Set aix_thread_ops.to_get_ada_task_ptid.
700
701 2009-03-11 Daniel Jacobowitz <dan@codesourcery.com>
702
703 * breakpoint.c (bpstat_check_breakpoint_conditions): Use
704 value_mark and value_free_to_mark.
705 * objfiles.c (free_objfile): Call objfile_free_data before
706 freeing the BFD.
707
708 2009-03-10 Hui Zhu <teawater@gmail.com>
709
710 * disasm.c (gdb_disassembly): Remove unused argument
711 "line_num".
712 * disasm.h (gdb_disassembly): Ditto.
713 * cli/cli-cmds.c (print_disassembly): Ditto.
714 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Ditto.
715
716 2009-03-09 Paul Pluzhnikov <ppluzhnikov@google.com>
717
718 * solib.c (solib_contains_address_p): New function.
719 (solib_name_from_address): Use it.
720 * printcmd.c (display_uses_solib_p): Use it.
721 * solib.h (solib_contains_address_p): Declare it.
722
723 2009-03-09 Jan Kratochvil <jan.kratochvil@redhat.com>
724
725 * varobj.c (free_variable): Call value_free.
726
727 2009-03-09 Jan Kratochvil <jan.kratochvil@redhat.com>
728
729 PR gdb/9873:
730 * dwarf2read.c (dwarf_decode_macros): New variable `at_commandline'.
731 Move the variable `macinfo_type' out of the loop. Create a new
732 processing pass before the current one to pre-create `current_file'.
733 New complaint on misplaced zero/non-zero definitions/includes.
734 Skip first DW_MACINFO_start_file with `at_commandline' set.
735
736 2008-03-09 Vladimir Prus <vladimir@codesourcery.com>
737
738 * solib.c (reload_shared_libraries): Give
739 inferior a chance to reset solib breakpoint.
740 Reinit frame cache.
741
742 2009-03-08 Christopher Faylor <me+cygwin@cgf.cx>
743
744 * windows-nat.c (dr): Redefine to use largest possible integer which
745 holds a pointer.
746 (cygwin_set_dr): Avoid coercion.
747
748 2009-03-08 Oswald Buddenhagen <oswald.buddenhagen@trolltech.de>
749
750 * windows-nat.c (windows_create_inferior): Implement --tty handling on
751 non-cygwin.
752
753 2009-03-06 Paul Pluzhnikov <ppluzhnikov@google.com>
754
755 Rename solib_address to solib_name_from_address.
756 * breakpoint.c (insert_bp_location, disable_breakpoints_in_shlibs)
757 (disable_breakpoints_in_unloaded_shlib): Update.
758 * printcmd.c (display_uses_solib_p): Likewise.
759 * stack.c (print_frame): Likewise.
760 * solib.c: Rename.
761 * solib.h: Rename.
762
763 2009-03-05 Paul Pluzhnikov <ppluzhnikov@google.com>
764
765 * printcmd.c (do_one_display): Reparse exp_string.
766 (display_uses_solib_p): New function.
767 (clear_dangling_display_expressions): New function.
768 (_initialize_printcmd): Add observer.
769 * solib.c (no_shared_libraries): Swap order of calls to
770 clear_solib and objfile_purge_solibs.
771
772 2009-03-05 Joel Brobecker <brobecker@adacore.com>
773
774 Implement the target-specific part of Ada tasking support
775 on Tru64.
776
777 * dec-thread.c (dec_thread_get_ada_task_ptid): New function.
778 (init_dec_thread_ops): Set the to_get_ada_task_ptid method.
779
780 2009-03-05 Joel Brobecker <brobecker@adacore.com>
781
782 Get rid of the global "base_target" and use "find_target_beneath"
783 to find the underlying target.
784 * dec-thread.c (base_target): Delete.
785 (enable_dec_thread): Remove assignement to base_target.
786 (dec_thread_detach, dec_thread_wait, dec_thread_wait)
787 (dec_thread_fetch_registers, dec_thread_store_registers)
788 (dec_thread_mourn_inferior, dec_thread_pid_to_str):
789 Update the function profile if necessary.
790 Use find_target_beneath to call the same method but from
791 the underlying target, removing the need for "base_target".
792
793 * dec-thread.c (dec_thread_get_regsets, dec_thread_set_regsets):
794 Fix a copy/paste error in a few debug traces...
795
796 * solib-osf.c (init_so): Use a simpler method for computing
797 the size of lm_info structure. This also gets rid of warning
798 emitted by the compiler.
799
800 2009-03-05 Pedro Alves <pedro@codesourcery.com>
801
802 * breakpoint.c (check_duplicates_for): Skip permanent breakpoints
803 duplicates of permanent breakpoints.
804
805 2009-03-04 Pedro Alves <pedro@codesourcery.com>
806
807 * inferior.h (notice_new_inferior): Declare.
808 * infcmd.c (notice_new_inferior): New.
809 * remote.c (remote_add_inferior, remote_add_thread): New.
810 (notice_new_inferiors): Rename to...
811 (remote_notice_new_inferior): ... this. Add RUNNING argument.
812 Use remote_add_thread instead of add_thread, passing it the
813 RUNNING argument. Add an inferior with remote_add_inferior. If
814 we just learned about an inferior, call notice_new_inferior.
815 (record_currthread): Adjust.
816 (remote_threads_info): Adjust to use remote_notice_new_inferior.
817 (remote_start_remote, extended_remote_attach_1): Use
818 remote_add_inferior.
819 (process_stop_reply): Adjust. Call remote_notice_new_inferior
820 after handling expedited registers and watchpoint state.
821 (extended_remote_create_inferior_1): Use remote_add_inferior.
822
823 2009-03-04 Aleksandar Ristovski <aristovski@qnx.com>
824
825 * infcmd.c (registers_info): Remove register number case.
826
827 2009-03-03 Pedro Alves <pedro@codesourcery.com>
828
829 * top.c (quit_target): Check for target_has_execution before
830 killing or detaching from inferiors.
831
832 2009-03-02 Joel Brobecker <brobecker@adacore.com>
833
834 Remove some unused routines.
835
836 * ada-lang.c (is_suppressed_name, ada_suppress_symbol_printing):
837 Delete.
838 * ada-lang.c (ada_task_list_iterator_ftype)
839 (iterate_over_live_ada_tasks): Delete.
840 * ada-tasks.c (ada_get_environment_task, iterate_over_live_ada_tasks):
841 Delete.
842
843 2009-03-01 Doug Evans <dje@google.com>
844
845 * symtab.c: Remove trailing whitespace throughout the file.
846 (expand_line_sal): Fix some typos and whitespace.
847
848 * Makefile.in (clean): rm -f $(DEPDIR)/*.
849
850 * Makefile.in (GDB_CFLAGS): Add -I$(srcdir)/common.
851 (init.c): signals/ -> common/.
852 (signals.o): Update.
853 * target.h (target_signal_to_string,target_signal_to_string)
854 (target_signal_from_name,target_signal_to_host_p)
855 (target_signal_from_host,target_signal_to_host): Move to ...
856 * common/gdb_signals.h: ... here. New file.
857 * common/signals.c: Moved here from signals/signals.c.
858 #include gdb_signals.h, remove #include of target.h in gdb case.
859 (target_signal_from_command,default_target_signal_to_host)
860 (default_target_signal_from_host): Move inside #ifndef GDBSERVER.
861
862 Include thread ID in target_wait debugging output.
863 * infrun.c (print_target_wait_results): New function.
864 (wait_for_inferior,fetch_inferior_event): Call it.
865
866 2009-02-27 Pedro Alves <pedro@codesourcery.com>
867
868 * gdb_proc_service.h (struct ps_prochandle): Replace pid_t field
869 with a ptid_t field.
870 * linux-thread-db.c (thread_get_info_callback): Build the ptid
871 using the pid stored in proc_handle.ptid.
872 (thread_from_lwp, thread_db_attach_lwp, enable_thread_event)
873 (check_for_thread_db, thread_db_detach, check_event)
874 (thread_db_mourn_inferior, find_new_threads_callback)
875 (thread_db_find_new_threads_1): Adjust.
876 * proc-service.c (ps_xfer_memory, ps_lgetregs, ps_lsetregs)
877 (ps_lgetfpregs, ps_lsetfpregs, ps_getpid): Adjust.
878
879 2009-02-27 Phil Muldoon <pmuldoon@redhat.com>
880
881 * valprint.c (read_string): Rework clean-up logic. Use
882 free_current_contents to clean-up buffer.
883
884 2009-02-27 Andreas Schwab <schwab@linux-m68k.org>
885
886 * MAINTAINERS: Update e-mail address.
887
888 2009-02-26 Phil Muldoon <pmuldoon@redhat.com>
889
890 * python/python-utils.c (python_string_to_unicode): Always return
891 a new reference.
892 (python_string_to_target_string): Decrement transient python
893 instance.
894 (python_string_to_host_string): Likewise.
895
896 2007-02-26 Pedro Alves <pedro@codesourcery.com>
897
898 * mips-linux-nat.c (mips64_linux_fetch_registers): Pass `ops' to
899 call to super_fetch_registers.
900 (mips64_linux_store_registers): Pass `ops' to call to
901 super_store_registers.
902
903 2009-02-25 Doug Evans <dje@google.com>
904
905 * breakpoint.c (insert_bp_location): Add \n to overlay breakpoint
906 error message.
907
908 * breakpoint.c (disable_breakpoints_in_shlibs): Delete local
909 disabled_shlib_breaks, unused.
910
911 * printcmd.c (build_address_symbolic): Fix comment.
912
913 2009-02-25 Hui Zhu <teawater@gmail.com>
914
915 * cli/cli-script.c (define_command): Add _() to query.
916 * gnu-nat.c (inf_validate_task_sc): Ditto.
917 * infcmd.c (kill_if_already_running): Ditto.
918 (jump_command): Ditto.
919 (attach_command): Ditto.
920 * inflow.c (kill_command): Ditto.
921 * infrun.c (handle_command): Ditto.
922 * maint.c (maintenance_dump_me): Ditto.
923 * memattr.c (mem_delete_command): Ditto.
924 * monitor.c (monitor_interrupt_query): Ditto.
925 * nto-procfs.c (interrupt_query): Ditto.
926 * printcmd.c (undisplay_command): Ditto.
927 * remote-mips.c (mips_kill): Ditto.
928 * remote.c (interrupt_query): Ditto.
929 * solib-irix.c (irix_open_symbol_file_object): Ditto.
930 * solib-osf.c (osf_open_symbol_file_object): Ditto.
931 * solib-pa64.c (pa64_open_symbol_file_object): Ditto.
932 * solib-som.c (som_open_symbol_file_object): Ditto.
933 * solib-svr4.c (open_symbol_file_object): Ditto.
934 * symfile.c (symbol_file_add_with_addrs_or_offsets): Ditto.
935 * target.c (kill_or_be_killed): Ditto.
936 * tracepoint.c (delete_trace_command): Ditto.
937 * top.c (quit_confirm): Add _() to s that will be used
938 in query.
939
940 2009-02-24 Pierre Muller <muller@ics.u-strasbg.fr>
941
942 Fix windows-nat.c compilation failure.
943
944 * windows-nat.c (windows_thread_alive): Fix forward declaration.
945 (get_windows_debug_event): Add ops parameter to call to windows_resume.
946
947 2009-02-23 Pedro Alves <pedro@codesourcery.com>
948
949 * remote-sim.c (gdbsim_resume): Add target_ops* argument.
950
951 2009-02-23 Jay Krell <jay.krell@cornell.edu> (tiny change)
952
953 * symtab.c (find_line_symtab): Initialize exact to avoid
954 a compiler warning.
955
956 2009-02-23 Pedro Alves <pedro@codesourcery.com>
957
958 * i386-linux-nat.c (i386_linux_fetch_inferior_registers): Pass
959 `ops' to recursive call.
960
961 2009-02-23 Pedro Alves <pedro@codesourcery.com>
962
963 * corelow.c (get_core_registers): Adjust.
964 (core_file_thread_alive): Rename to...
965 (core_thread_alive): ... this.
966 (core_pid_to_str): Try gdbarch_core_pid_to_str first.
967 (init_core_ops): Adjust.
968 (coreops_suppress_target): Delete.
969 (_initialize_corelow): Unconditionally add core_ops.
970 * procfs.c: Include "inf-child.h".
971 (procfs_ops): Delete.
972 (init_procfs_ops): Delete. Reimplement as...
973 (procfs_target): ... this, inheriting from inf-child.
974 (procfs_attach, procfs_detach, procfs_fetch_registers): Adjust.
975 (procfs_prepare_to_store): Delete.
976 (procfs_store_registers, procfs_resume): Adjust.
977 (procfs_open): Delete.
978 (procfs_suppress_run): Delete.
979 (procfs_can_run): Delete.
980 (procfs_mourn_inferior): Adjust.
981 (procfs_init_inferior): Add target_ops parameter. Adjust.
982 (procfs_create_inferior): Don't pass procfs_init_inferior to
983 fork_inferior. Instead call it after fork_inferior returns.
984 (procfs_find_new_threads): Adjust.
985 (_initialize_procfs): Adjust to use procfs_target instead of
986 init_procfs_ops.
987 * sol-thread.c (orig_core_ops, sol_core_ops): Delete.
988 (lwp_to_thread): Use target_thread_alive.
989 (sol_thread_open): Delete.
990 (sol_thread_attach): Delete.
991 (sol_thread_detach, sol_thread_resume, sol_thread_wait)
992 (sol_thread_fetch_registers, sol_thread_store_registers): Adjust
993 to use find_target_beneath.
994 (sol_thread_prepare_to_store, sol_thread_xfer_memory): Delete.
995 (sol_thread_xfer_partial): Adjust to use find_target_beneath.
996 (sol_thread_files_info, sol_thread_kill_inferior): Delete.
997 (check_for_thread_db): New.
998 (sol_thread_notice_signals, sol_thread_create_inferior): Delete.
999 (sol_thread_new_objfile): Call check_for_thread_db.
1000 (sol_thread_mourn_inferior): Adjust to use find_target_beneath.
1001 (sol_thread_can_run): Delete.
1002 (sol_thread_alive): Adjust to use find_target_beneath.
1003 (sol_thread_stop): Delete.
1004 (rw_common): Use target_write_memory or target_read_memory.
1005 (ps_lgetregs, ps_lgetfpregs): Use target_fetch_registers.
1006 (ps_lsetregs, ps_lsetfpregs): Use target_store_registers.
1007 (solaris_pid_to_str): Remove check for libthread_db initialization
1008 failing.
1009 (sol_find_new_threads): Remove check for libthread_db
1010 initialization failing, or for an invalid inferior_ptid. Adjust
1011 to use find_target_beneath.
1012 (sol_core_open, sol_core_close, sol_core_detach,
1013 sol_core_files_info, sol_find_memory_regions,
1014 sol_make_note_section, ignore): Delete.
1015 (init_sol_thread_ops): Make it a thread_stratum target. Remove
1016 unneeded callback settings.
1017 (init_sol_core_ops): Delete.
1018 (_initialize_sol_thread): No longer call init_sol_core_ops, set
1019 procfs_suppress_run, or hack with core_ops.
1020
1021 * target.h (struct target_ops): Add a target_ops * parameter to
1022 to_resume, to_fetch_registers, to_store_registers, to_thread_alive
1023 and to_find_new_threads.
1024 (target_fetch_registers, target_store_registers)
1025 (target_thread_alive, target_find_new_threads): Redeclare as
1026 function.
1027
1028 * target.c (update_current_target): Do not inherit or de_fault
1029 to_resume, to_fetch_registers, to_store_registers,
1030 to_thread_alive, to_find_new_threads.
1031 (target_resume): Adjust.
1032 (target_thread_alive, target_find_new_threads): New.
1033 (debug_to_resume, debug_to_fetch_registers): Delete.
1034 (target_fetch_registers): New.
1035 (debug_to_store_registers): Delete.
1036 (target_store_registers): New.
1037 (debug_to_thread_alive, debug_to_find_new_threads): Delete.
1038 (setup_target_debug): Adjust.
1039
1040 * gdbcore.h (core_ops): Delete declaration.
1041
1042 * inf-ptrace.c, linux-nat.c, remote.c, amd64-linux-nat.c,
1043 inf-child.c, linux-thread-db.c, bsd-uthread.c, inf-ttrace.c,
1044 i386-sol2-tdep.c, darwin-nat.c, gnu-nat.c, go32-nat.c,
1045 hpux-thread.c, i386-linux-nat.c, i386fbsd-nat.c, monitor.c,
1046 nto-procfs.c, remote-m32r-sdi.c, remote-mips.c, windows-nat.c,
1047 alphabsd-nat.c, amd64bsd-nat.c, arm-linux-nat.c, armnbsd-nat.c,
1048 bsd-kvm.c, hppa-hpux-nat.c, hppa-linux-nat.c, hppabsd-nat.c,
1049 hppanbsd-nat.c, i386-darwin-nat.c, i386bsd-nat.c,
1050 ia64-linux-nat.c, m32r-linux-nat.c, m68kbsd-nat.c,
1051 m68klinux-nat.c, m88kbsd-nat.c, mips-linux-nat.c,
1052 mips64obsd-nat.c, mipsnbsd-nat.c, ppc-linux-nat.c, ppcnbsd-nat.c,
1053 ppcobsd-nat.c, remote-sim.c, rs6000-nat.c, s390-nat.c,
1054 shnbsd-nat.c, sparc-nat.c, sparc-nat.h, spu-linux-nat.c,
1055 vaxbsd-nat.c, xtensa-linux-nat.c: Adjust to target_ops changes.
1056
1057 * gdbarch.sh (core_pid_to_str): New gdbarch callback.
1058 * gdbarch.h, gdbarch.c: Regenerate.
1059
1060 * sol2-tdep.c: Include "inferior.h".
1061 (sol2_core_pid_to_str): New.
1062 * sol2-tdep.h (sol2_core_pid_to_str): Declare.
1063
1064 * amd64-sol2-tdep.c (amd64_sol2_init_abi): Set it.
1065 * sparc-sol2-tdep.c (sparc32_sol2_init_abi): Set it.
1066 * sparc64-sol2-tdep.c (sparc64_sol2_init_abi): Set it.
1067 * i386-sol2-tdep.c (i386_sol2_init_abi): Set it.
1068
1069 2009-02-22 Doug Evans <dje@google.com>
1070
1071 * exec.c (exec_file_attach): Fix comment.
1072
1073 2009-02-22 Pedro Alves <pedro@codesourcery.com>
1074
1075 Silence a few -Wmissing-prototypes warnings.
1076
1077 PR build/9877:
1078 * alpha-linux-tdep.c (alpha_linux_regset_from_core_section): Make
1079 it static.
1080 * alpha-osf1-tdep.c (_initialize_alpha_osf1_tdep): Declare.
1081 * amd64fbsd-tdep.c (amd64fbsd_init_abi): Make it static.
1082 * amd64nbsd-tdep.c (_initialize_amd64nbsd_ndep): Rename to ...
1083 (_initialize_amd64nbsd_tdep): ... this.
1084 * arm-linux-tdep.c (arm_linux_software_single_step): Make it static.
1085 (_initialize_arm_linux_tdep): Declare.
1086 * armbsd-tdep.c (armbsd_fpreg_offset): Make it static.
1087 * armnbsd-tdep.c (_initialize_arm_netbsd_tdep): Declare.
1088 * armobsd-tdep.c (_initialize_armobsd_tdep): Declare.
1089 * avr-tdep.c (avr_return_value): Make it static.
1090 (avr_frame_unwind_cache): Ditto.
1091 * bsd-uthread.c (bsd_uthread_inferior_created): Ditto.
1092 (bsd_uthread_solib_loaded): Ditto.
1093 (bsd_uthread_solib_unloaded): Ditto.
1094 (bsd_uthread_target): Ditto.
1095 (_initialize_bsd_uthread): Declare.
1096 * cris-tdep.c (crisv32_single_step_through_delay): Make it static.
1097 (cris_frame_unwind_cache): Ditto.
1098 * frv-tdep.c (frv_return_value): Ditto.
1099 * h8300-tdep.c (h8300_use_struct_convention): Ditto.
1100 (h8300h_use_struct_convention): Ditto.
1101 * hppa-tdep.c (hppa_sign_extend, hppa_low_hppa_sign_extend):
1102 Ditto.
1103 * hppa-tdep.h (hppa_low_sign_extend, hppa_sign_extend): Delete
1104 declarations.
1105 * hppabsd-tdep.c: Include hppabsd-tdep.h.
1106 (hppabsd_find_global_pointer): Make it static.
1107 * hppabsd-tdep.h: New.
1108 * hppanbsd-tdep.c: Include hppabsd-tdep.h.
1109 (hppabsd_init_abi): Remove declaration.
1110 (_initialize_hppabsd_tdep): Remove declaration.
1111 (_initialize_hppanbsd_tdep): Declare.
1112 * hppaobsd-tdep.c: Include hppabsd-tdep.h.
1113 (hppabsd_init_abi): Delete declaration.
1114 (hppaobsd_init_abi): Make it static.
1115 * i386-nto-tdep.c (_initialize_i386nto_tdep): Declare.
1116 * i386nbsd-tdep.c (_initialize_i386nbsd_tdep): Declare.
1117 * ia64-linux-tdep.c (_initialize_ia64_linux_tdep): Declare.
1118 * ia64-tdep.c (ia64_register_reggroup_p): Make it static.
1119 * iq2000-tdep.c (_initialize_iq2000_tdep): Declare.
1120 * m32c-tdep.c (m32c_register_reggroup_p): Make it static.
1121 (m32c_analyze_prologue, m32c_virtual_frame_pointer): Ditto.
1122 (_initialize_m32c_tdep): Declare.
1123 * m32r-rom.c (_initialize_m32r_rom): Declare.
1124 * m32r-tdep.c (m32r_skip_prologue): Make it static.
1125 (m32r_return_value): Ditto.
1126 * m68hc11-tdep.c (m68hc11_frame_unwind_cache): Make it static.
1127 (m68hc11_return_value): Ditto.
1128 * m68klinux-tdep.c (_initialize_m68k_linux_tdep): Declare.
1129 * m88k-tdep.c (m88k_frame_cache): Make it static.
1130 * mep-tdep.c (mep_gdb_print_insn): Ditto.
1131 (mep_return_value): Ditto.
1132 (_initialize_mep_tdep): Declare.
1133 * mips-irix-tdep.c (_initialize_mips_irix_tdep): Declare.
1134 * mips-linux-tdep.c (supply_64bit_reg): Make it static.
1135 (mips_linux_syscall_next_pc): Ditto.
1136 (_initialize_mips_linux_tdep): Declare.
1137 * mips-tdep.c (mips_single_step_through_delay): Make it static.
1138 * mipsnbsd-tdep.c (_initialize_mipsnbsd_tdep): Declare.
1139 * mn10300-linux-tdep.c (_initialize_mn10300_linux_tdep): Declare.
1140 * mn10300-tdep.c (_initialize_mn10300_tdep): Declare.
1141 * mt-tdep.c (_initialize_mt_tdep): Declare.
1142 * nbsd-tdep.c: Include nbsd-tdep.h.
1143 * nto-tdep.c (find_load_phdr): Make it static.
1144 (_initialize_nto_tdep): Declare.
1145 * ppc-linux-tdep.c (ppc_linux_memory_remove_breakpoint): Make it
1146 static.
1147 (_initialize_ppc_linux_tdep): Declare.
1148 * remote-m32r-sdi.c (m32r_can_use_hw_watchpoint)
1149 (m32r_insert_watchpoint, m32r_remove_watchpoint)
1150 (m32r_stopped_data_address, m32r_stopped_by_watchpoint): Make
1151 static.
1152 * rs6000-aix-tdep.c (_initialize_rs6000_aix_tdep): Declare.
1153 * rs6000-nat.c: Include xcoffread.h.
1154 (find_toc_address): Don't extern declare get_toc_offset. Adjust
1155 to call xcoff_get_to_offset.
1156 * rs6000-tdep.c (ppc_vsx_support_p, ppc_displaced_step_fixup)
1157 (rs6000_skip_main_prologue, rs6000_in_solib_return_trampoline)
1158 (rs6000_skip_trampoline_code): Make static.
1159 * s390-tdep.c (s390_regset_from_core_section): Ditto.
1160 * sh-tdep.c (sh_register_reggroup_p): Ditto.
1161 * shnbsd-tdep.c (shnbsd_regset_from_core_section): Ditto.
1162 (_initialize_shnbsd_tdep): Declare.
1163 * solib-frv.c (displacement_from_map): Make static.
1164 (_initialize_frv_solib): Declare.
1165 * solib-irix.c (fetch_lm_info): Make static.
1166 (_initialize_irix_solib): Declare.
1167 * solib-som.c: Include solib-som.h.
1168 (som_solib_select): Line break.
1169 * sparc-tdep.c (sparc_regset_from_core_section): Make static.
1170 * sparcnbsd-tdep.c (_initialize_sparnbsd_tdep): Rename to ...
1171 (_initialize_sparcnbsd_tdep): ... this.
1172 * spu-tdep.c (spu_software_single_step): Make it static.
1173 (_initialize_spu_tdep): Declare.
1174 * vax-tdep.c (vax_frame_cache): Make it static.
1175 * xcoffread.c: Include xcoffread.h.
1176 (get_toc_offset): Rename to ...
1177 (xcoff_get_toc_offset): ... this.
1178 (_initialize_xcoffread): Declare.
1179 * xcoffread.h: New.
1180 * xtensa-linux-tdep.c (_initialize_xtensa_linux_tdep): Declare.
1181 * xtensa-tdep.c (xtensa_skip_prologue, xtensa_derive_tdep): Make
1182 static.
1183 (_initialize_xtensa_tdep): Declare.
1184
1185 2008-02-21 Pedro Alves <pedro@codesorcery.com>
1186
1187 Silence a few -Wmissing-prototypes warnings.
1188
1189 PR build/9877:
1190 * amd64-nat.c: Include "amd64-nat.h".
1191 * fork-child.c (_initialize_fork_child): Ditto.
1192 * gcore.c (_initialize_gcore): Ditto.
1193 * inf-ptrace.c: Include "inf-ptrace.h".
1194 (inf_ptrace_store_registers): Make it static.
1195 * linux-nat.c (linux_nat_terminal_ours): Make it static.
1196 (_initialize_linux_nat): Declare before definition.
1197 * linux-tdep.c: Include "linux-tdep.h".
1198 * linux-thread-db.c (_initialize_thread_db): Declare before
1199 definition.
1200 * proc-service.c (_initialize_proc_service): Ditto.
1201 * remote.c (remote_send_printf): Make it static.
1202 * solib.c: Include "solib.h".
1203 * symfile-mem.c (_initialize_symfile_mem): Declare before
1204 definition.
1205 * ada-lang.c (ada_la_decode, ada_match_name)
1206 (ada_suppress_symbol_printing, ada_is_array_type)
1207 (ada_value_ptr_subscript, ada_array_length)
1208 (ada_to_static_fixed_value): Make them static.
1209 (_initialize_ada_language): Declare before definition.
1210 * ada-tasks.c (ada_get_task_number, ada_get_environment_task)
1211 (ada_task_list_changed, ada_new_objfile_observer): Make them
1212 static.
1213 (_initialize_tasks): Declare before definition.
1214 * addrmap.c (_initialize_addrmap): Declare before definition.
1215 * auxv.c (default_auxv_parse): Make it static.
1216 * bfd-target.c (target_bfd_xfer_partial, target_bfd_xclose): Make
1217 them static.
1218 * breakpoint.c (remove_sal): Add line break.
1219 (expand_line_sal_maybe): Make it static.
1220 * cp-name-parser.y: Include "cp-support.h".
1221 * cp-valprint.c (cp_find_class_member): Make it static.
1222 * eval.c (value_f90_subarray): Ditto.
1223 * exceptions.c (print_any_exception): Ditto.
1224 * findcmd.c (_initialize_mem_search): Declare before definition.
1225 * frame.c (frame_observer_target_changed): Make it static.
1226 * gnu-v3-abi.c (gnuv3_find_method_in): Make it static.
1227 * inf-child.c: Include "inf-child.h".
1228 * inferior.h (valid_inferior_id): Rename to ...
1229 (valid_gdb_inferior_id): ... this.
1230 * infrun.c (infrun_thread_stop_requested, siginfo_make_value):
1231 Make them static.
1232 * jv-lang.c (java_language_arch_info): Make it static.
1233 * m2-typeprint.c (m2_get_discrete_bounds): Ditto.
1234 * osdata.c (info_osdata_command): Make it static.
1235 * regcache.c (regcache_observer_target_changed): Make it static.
1236 * reverse.c (_initialize_reverse): Declare before definition.
1237 * stabsread.c (cleanup_undefined_types_noname)
1238 (cleanup_undefined_types_1): Make them static.
1239 * symfile.c (place_section): Make it static.
1240 * symtab.c (find_pc_sect_psymtab_closer): Make it static.
1241 * target-descriptions.c (_initialize_target_descriptions): Declare
1242 before definition.
1243 * target.c (default_get_ada_task_ptid, find_default_can_async_p)
1244 (find_default_is_async_p, find_default_supports_non_stop): Make
1245 them static.
1246 (target_supports_non_stop): Add prototype.
1247 (dummy_pid_to_str): Make it static.
1248 * utils.c (_initialize_utils): Declare before definition.
1249 * ada-exp.y (_initialize_ada_exp): Declare before definition.
1250 * solib-svr4.c (HAS_LM_DYNAMIC_FROM_LINK_MAP): Add a prototype.
1251 * target.h (struct target_ops): Add a prototype to the
1252 to_can_execute_reverse callback.
1253 * macroscope.c (_initialize_macroscope): Declare before definition.
1254 * cp-namespace.c (_initialize_cp_namespace): Declare before definition.
1255 * python/python.c (_initialize_python): Declare before definition.
1256 * tui/tui-command.c: Include "tui/tui-command.h".
1257 * tui/tui-data.c (init_content_element, init_win_info): Make them
1258 static.
1259 * tui/tui-disasm.c: Include "tui/tui-disasm.h".
1260 * tui/tui-interp.c (_initialize_tui_interp): Declare before
1261 definition.
1262 * tui/tui-layout.c: Include "tui/tui-layout.h".
1263 (_initialize_tui_layout): Declare before definition.
1264 * tui/tui-regs.c: Include "tui/tui-regs.h".
1265 (tui_display_reg_element_at_line): Make it static.
1266 (_initialize_tui_regs): Declare before definition.
1267 * tui/tui-stack.c (_initialize_tui_stack): Declare before
1268 definition.
1269 * tui/tui-win.c: Include "tui/tui-win.h".
1270 (_initialize_tui_win): Declare before definition.
1271 (tui_sigwinch_handler): Make it static. Wrap in ifdef SIGWINCH.
1272 * tui/tui-win.h (tui_sigwinch_handler): Delete declaration.
1273 (tui_get_cmd_list): Add a prototype.
1274 * tui/tui-windata.c: Include tui-windata.h.
1275 * tui/tui-wingeneral.c (box_win): Make it static.
1276 * cli/cli-logging.c (show_logging_command): Make it static.
1277 (_initialize_cli_logging): Declare before definition.
1278 * mi/mi-common.c (_initialize_gdb_mi_common): Declare before
1279 definition.
1280
1281 2009-02-20 Pierre Muller <muller@ics.u-strasbg.fr>
1282
1283 Extend use of i386_use_watchpoints to all i386 native files
1284 using hardware watchpoints.
1285 * go32-nat.c (init_go32_ops): Call i386_use_watchpoints.
1286 * i386fbsd-nat.c (_initialize_i386fbsd_nat): Ditto.
1287 * windows-nat.c (init_windows_ops): Ditto.
1288 * config/i386/nm-cygwin.h: Define I386_WATCHPOINTS_IN_TARGET_VECTOR.
1289 * config/i386/nm-cygwin64.h: Ditto.
1290 * config/i386/nm-fbsd.h: Ditto.
1291 * config/i386/nm-go32.h: Ditto.
1292
1293 2009-02-19 Joel Brobecker <brobecker@adacore.com>
1294
1295 * ada-typeprint.c (ada_typedef_print): Remove. Unused.
1296
1297 2009-02-18 Vladimir Prus <vladimir@codesourcery.com>
1298
1299 * mi/mi-interp.c (mi_solib_loaded, mi_solib_unloaded): New.
1300 (mi_interpreter_init): Register the above.
1301 * solib.c (clear_solib): Notify solib unload.
1302 * breakpoint.c (disable_breakpoints_in_unloaded_shlib): Do not
1303 disable breakpoints on a.out targets.
1304
1305 2009-02-17 Vladimir Prus <vladimir@codesourcery.com>
1306
1307 * observer.c (observer_test_first_notification_function)
1308 (observer_test_second_notification_function)
1309 (observer_test_third_notification_function): Adjust prototype.
1310
1311 2009-02-17 Pedro Alves <pedro@codesourcery.com>
1312
1313 * Makefile.in (ALL_64_TARGET_OBS): Add amd64-dicos-tdep.o.
1314 (ALL_TARGET_OBS): Add dicos-tdep.o.
1315 (ALLDEPFILES): Add amd64-dicos-tdep.c and dicos-tdep.c.
1316 * configure.tgt (i[34567]86-*-dicos*): Add dicos-tdep.o to
1317 gdb_target_obs.
1318 (x86_64-*-dicos*): Add dicos-tdep.o and amd64-dicos-tdep.o to
1319 gdb_target_obs.
1320 * dicos-tdep.h, dicos-tdep.c: New.
1321 * amd64-dicos-tdep.c: New.
1322 * i386-dicos-tdep.c: Don't include solib.h, solib-target.h or
1323 inferior.h. Include dicos-tdep.h.
1324 (i386_dicos_init_abi): Call dicos_init_abi.
1325 (i386_dicos_bfd_has_symbol_p): Delete.
1326 (i386_dicos_osabi_sniffer): Use dicos_load_module_p.
1327
1328 * NEWS: Mention x86-64 DICOS target support.
1329
1330 2009-02-16 Doug Evans <dje@google.com>
1331
1332 * amd64-tdep.c (amd64_skip_prefixes): Renamed from skip_prefixes.
1333 All callers updated.
1334 (amd64_get_insn_details): Handle more 3-byte opcode insns.
1335 (amd64_breakpoint_p): Delete.
1336 (amd64_displaced_step_fixup): When fixing up after stepping an int3,
1337 don't back up pc to the start of the int3.
1338 * i386-tdep.c: #include opcode/i386.h.
1339 (i386_skip_prefixes): New function.
1340 (i386_absolute_jmp_p): Constify argument.
1341 (i386_absolute_call_p,i386_ret_p,i386_call_p,i386_syscall_p): Ditto.
1342 (i386_breakpoint_p): Delete.
1343 (i386_displaced_step_fixup): Handle unnecessary or redundant prefixes.
1344 When fixing up after stepping an int3, don't back up pc to the start
1345 of the int3.
1346
1347 2009-02-16 Pedro Alves <pedro@codesourcery.com>
1348
1349 * corelow.c (core_close): Don't hardcode the core's pid.
1350 (core_open): Find core threads before calling
1351 post_create_inferior.
1352 (add_to_thread_list, get_core_register_section): Take into account
1353 systems where the regset section names encode the pid of the
1354 inferior.
1355
1356 * gdbarch.sh (core_reg_section_encodes_pid): New gdbarch setting.
1357 * gdbarch.h, gdbarch.c: Regenerate.
1358
1359 * amd64-sol2-tdep.c (amd64_sol2_init_abi): Set it.
1360 * i386-sol2-tdep.c (i386_sol2_init_abi): Set it.
1361 * sparc-sol2-tdep.c (sparc32_sol2_init_abi): Set it.
1362 * sparc64-sol2-tdep.c (sparc64_sol2_init_abi): Set it.
1363
1364 2009-02-14 Vladimir Prus <vladimir@codesourcery.com>
1365
1366 Include frame information for *stopped due to CLI commands.
1367
1368 * ada-tasks.c (ada_normal_stop_observer): Adjust prototype.
1369 * infcmd.c (finish_command_continuation): Pass '1' for
1370 'print_frame' parameter to the observer.
1371 * infrun.c (normal_stop): Don't print mi-specific information
1372 here. Pass 'stop_print_frame' to the 'print_frame' parameter
1373 of the observer.
1374 * mi/mi-interp.c (mi_on_normal_stop): Adjust prototype.
1375 If we need to print frame, and current uiout is not the MI one,
1376 print frame again.
1377
1378 2009-02-13 Pierre Muller <muller@ics.u-strasbg.fr>
1379
1380 * xtensa-tdep.c (call0_analyze_prologue): Delete BSZ macro.
1381 Replace BSZ macro uses by XTENSA_ISA_BSZ macro.
1382
1383 2009-02-12 Jan Kratochvil <jan.kratochvil@redhat.com>
1384
1385 PR fortran/9806
1386 * dwarf2read.c (process_die <DW_TAG_module>, read_module)
1387 (scan_partial_symbols <DW_TAG_module>, add_partial_module): New.
1388
1389 2009-02-11 Pierre Muller <muller@ics.u-strasbg.fr>
1390
1391 * dwarf2read.c (read_base_type): Set code to TYPE_CODE_CHAR
1392 for DW_ATE_signed_char and DW_ATE_unsigned_char
1393 for pascal language.
1394
1395 2009-02-11 Jim Meyering <meyering@redhat.com>
1396 Jan Kratochvil <jan.kratochvil@redhat.com>
1397
1398 Avoid NULL dereference.
1399 * stack.c (return_command): Guard use of SYMBOL_TYPE (thisfun).
1400 New variable func_type.
1401
1402 2009-02-11 Pedro Alves <pedro@codesourcery.com>
1403
1404 * gdbarch.c: Regenerate.
1405
1406 2009-02-10 Pierre Muller <muller@ics.u-strasbg.fr>
1407
1408 * p-lang.c (is_pascal_string_type): Fix comment.
1409 Determine exact size of char elements for GPC
1410 strings.
1411 (pascal_printstr): Handle char width of 2 or 4.
1412 * p-valprint.c (pascal_val_print): Handle char
1413 of width 2 or 4.
1414
1415 2009-02-07 Daniel Jacobowitz <dan@codesourcery.com>
1416
1417 * dwarf2read.c (dwarf2_build_psymtabs_hard): Move lowpc and highpc
1418 inside the loop. Only call addrmap_set_empty if the compilation unit
1419 had DW_AT_high_pc and DW_AT_low_pc. Update call to
1420 scan_partial_symbols.
1421 (scan_partial_symbols): Take NEED_PC argument and pass it along with
1422 LOWPC and HIGHPC.
1423 (add_partial_namespace): Take NEED_PC argument and pass it through.
1424 (add_partial_subprogram): Take NEED_PC argument. Update the addrmap
1425 if necessary.
1426
1427 2009-02-07 Pedro Alves <pedro@codesourcery.com>
1428
1429 * NEWS: Mention inspecting extra signal information, $_siginfo,
1430 and the qXfer:siginfo:read and qXfer:siginfo:write packets.
1431
1432 2009-02-07 Pedro Alves <pedro@codesourcery.com>
1433
1434 * linux-nat.c (PTRACE_SETSIGINFO): Define if PTRACE_GETSIGINFO
1435 isn't defined.
1436
1437 2009-02-06 Pedro Alves <pedro@codesourcery.com>
1438
1439 * amd64-linux-nat.c (compat_int_t, compat_uptr_t, compat_time_t)
1440 (compat_timer_t, compat_clock_t, struct compat_timeval)
1441 (compat_sigval_t, compat_siginfo_t): New types.
1442 (cpt_si_pid, cpt_si_uid, cpt_si_timerid, cpt_si_overrun)
1443 (cpt_si_status, cpt_si_utime, cpt_si_stime, cpt_si_ptr)
1444 (cpt_si_addr, cpt_si_band, cpt_si_fd): New defines.
1445 (compat_siginfo_from_siginfo, siginfo_from_compat_siginfo)
1446 (amd64_linux_siginfo_fixup): New.
1447 * linux-nat.c (linux_nat_siginfo_fixup): New.
1448 (siginfo_fixup): New.
1449 (linux_xfer_siginfo): Use siginfo_fixup to convert between the
1450 siginfo layout expected by ptrace and the siginfo layout of the
1451 inferior.
1452 (linux_nat_set_siginfo_fixup): New.
1453 * linux-nat.h (linux_nat_set_siginfo_fixup): Declare.
1454
1455 2009-02-06 Pedro Alves <pedro@codesourcery.com>
1456
1457 * target.h (enum target_object): Add new TARGET_OBJECT_SIGNAL_INFO.
1458 * infrun.c (siginfo_value_read, siginfo_value_write): New.
1459 (siginfo_value_funcs): New.
1460 (siginfo_make_value): New.
1461 (_initialize_infrun): Create the $_siginfo convenience variable.
1462 * gdbtypes.h (append_composite_type_field_aligned): Declare.
1463 * gdbtypes.c (append_composite_type_field): Rename to...
1464 (append_composite_type_field_aligned): ... this. Add ALIGNMENT
1465 argument. Handle it.
1466 (append_composite_type_field): Rewrite on top of
1467 append_composite_type_field_aligned.
1468 * value.h (internalvar_make_value): New typedef.
1469 (struct internalvar) <make_value>: New field.
1470 (create_internalvar_type_lazy): Declare.
1471 * value.c (create_internalvar): Clear make_value.
1472 (create_internalvar_type_lazy): New.
1473 (value_of_internalvar): If make_value is set use it.
1474 (preserve_values): Skip internal variables that don't have a
1475 value.
1476 * gdbarch.sh (get_siginfo_type): New.
1477 * gdbarch.h, gdbarch.c: Regenerate.
1478
1479 * linux-tdep.h, linux-tdep.c: New.
1480 * amd64-linux-tdep.c: Include "linux-tdep.h".
1481 (amd64_linux_init_abi): Register linux_get_siginfo_type and
1482 linux_get_siginfo_mapper.
1483 * i386-linux-tdep.c: Include "linux-tdep.h".
1484 (i386_linux_init_abi): Register linux_get_siginfo_type and
1485 linux_get_siginfo_mapper.
1486 * arm-linux-tdep.c: Include "linux-tdep.h".
1487 (i386_linux_init_abi): Register linux_get_siginfo_type and
1488 linux_get_siginfo_mapper.
1489
1490 * linux-nat.c (linux_xfer_siginfo): New.
1491 (linux_nat_xfer_partial): Handle TARGET_OBJECT_SIGNAL_INFO.
1492 * remote.c (PACKET_qXfer_siginfo_read)
1493 (PACKET_qXfer_siginfo_write): New.
1494 (feature remote_protocol_features): Add "qXfer:siginfo:read" and
1495 "qXfer:siginfo:write" features.
1496 (remote_xfer_partial): Handle TARGET_OBJECT_SIGNAL_INFO.
1497 (_initialize_remote): Add "set/show remote read-siginfo-object"
1498 and "set/show remote write-siginfo-object" commands.
1499
1500 * Makefile.in (ALL_TARGET_OBS): Add linux-tdep.o.
1501 (HFILES_NO_SRCDIR): Add linux-tdep.h.
1502 (ALLDEPFILES): Add linux-tdep.c.
1503
1504 * configure.tgt (arm*-*-linux* | arm*-*-uclinux*)
1505 (i[34567]86-*-linux*, x86_64-*-linux*): Add linux-tdep.o to
1506 gdb_target_obs.
1507
1508 2009-02-06 Jim Blandy <jimb@codesourcery.com>
1509 Daniel Jacobowitz <dan@codesourcery.com>
1510 Vladimir Prus <vladimir@codesourcery.com>
1511 Pedro Alves <pedro@codesourcery.com>
1512
1513 * defs.h (enum lval_type): New value: lval_computed.
1514 * value.h (struct lval_funcs): New type.
1515 (allocate_computed_value, value_computed_funcs)
1516 (value_computed_closure): New declarations.
1517 * value.c (struct value): Add a structure to the location union
1518 for computed lvalues, containing 'funcs' and 'closure' members.
1519 (allocate_computed_value, value_computed_funcs)
1520 (value_computed_closure): New functions.
1521 (value_free): For computed lvalues, call the closure's
1522 'free_closure' function before freeing the value itself.
1523 (value_copy): If we're copying an lval_computed value, call the
1524 closure's 'copy_closure' function.
1525 (set_value_component_location): If the original value is a
1526 computed lvalue, then call the closure's 'copy_closure' function.
1527 (value_of_internalvar): If an internal variable's value is a
1528 computed lvalue, make retrieving its value produce an equivalent
1529 computed lvalue.
1530 * valops.c (value_fetch_lazy): Unlazy computed lvalues by calling
1531 their read function.
1532 (value_assign): Assign to computed lvalues by calling their write
1533 function.
1534
1535 2009-02-06 Pedro Alves <pedro@codesourcery.com>
1536
1537 * linux-nat.c (linux_nat_wait): Adjust.
1538 (linux_nat_pid_to_str): Adjust. Remove call to thread_db_init.
1539 * linux-nat.h (thread_db_init): Delete declaration.
1540 * linux-thread-db.c (target_beneath): Delete.
1541 (thread_db_init): Delete.
1542 (thread_db_detach): Use find_target_beneath.
1543 (thread_db_wait): Adjust interface. Use find_target_beneath.
1544 (thread_db_mourn_inferior): Use find_target_beneath.
1545 (thread_db_can_async_p, thread_db_is_async_p, thread_db_async)
1546 (thread_db_async_mask): Delete.
1547 (thread_db_pid_to_str): Adjust interface. Use
1548 find_target_beneath.
1549 (thread_db_get_thread_local_address): Adjust interface. Use
1550 find_target_beneath.
1551 (init_thread_db_ops): Delete references to delete functions.
1552 * target.c (update_current_target): Don't inherit or default
1553 to_wait. Don't inherit to_pid_to_str and
1554 to_get_thread_local_address.
1555 (target_translate_tls_address): Look for a pushed target that
1556 implements to_get_thread_local_address, and use it instead of
1557 checking for target_get_thread_local_address_p.
1558 (target_wait, target_pid_to_str): Reimplement as functions.
1559 (dummy_pid_to_str): New.
1560 (init_dummy_target): Register it.
1561 (debug_to_wait): Delete.
1562 * target.h (struct target_ops): Make to_wait, to_pid_to_str and
1563 to_get_thread_local_address accept a pointer to struct target_ops.
1564 (target_wait): Delete macro, and declare as function.
1565 (target_pid_to_str): Likewise.
1566 (target_get_thread_local_address)
1567 (target_get_thread_local_address_p): Delete.
1568 (noprocess): Add NORETURN and ATTR_NORETURN tags.
1569 * inf-ptrace.c (inf_ptrace_wait): Adjust.
1570 (inf_ptrace_pid_to_str): New.
1571 (inf_ptrace_target): Use inf_ptrace_pid_to_str.
1572 * aix-thread.c (aix_thread_wait, aix_thread_pid_to_str): Adjust.
1573 * bsd-kvm.c (bsd_kvm_pid_to_str): Adjust.
1574 * bsd-uthread.c (bsd_uthread_wait, bsd_uthread_pid_to_str):
1575 Adjust.
1576 * corelow.c (core_pid_to_str): Adjust.
1577 * darwin-nat.c (darwin_wait, darwin_pid_to_str): Adjust.
1578 * dec-thread.c (dec_thread_wait, dec_thread_pid_to_str): Adjust.
1579 * gnu-nat.c (gnu_wait, gnu_pid_to_str): Adjust.
1580 * go32-nat.c (go32_wait, go32_pid_to_str): Adjust.
1581 * hpux-thread.c (hpux_thread_wait): Adjust.
1582 * inf-ttrace.c (inf_ttrace_wait, inf_ttrace_pid_to_str): Adjust.
1583 * monitor.c (monitor_wait, monitor_pid_to_str): Adjust.
1584 * nto-procfs.c (procfs_wait, procfs_pid_to_str): Adjust.
1585 * procfs.c (procfs_pid_to_str): Adjust.
1586 * remote-m32r-sdi.c (m32r_wait, m32r_pid_to_str): Adjust.
1587 * remote-mips.c (mips_wait): Adjust.
1588 * remote-sim.c (gdbsim_wait, gdbsim_pid_to_str): Adjust.
1589 * remote.c (remote_wait, remote_pid_to_str)
1590 (remote_get_thread_local_address): Adjust.
1591 * rs6000-nat.c (rs6000_wait): Adjust.
1592 * sol-thread.c (procfs_pid_to_str): Adjust declaration.
1593 (sol_thread_wait, solaris_pid_to_str): Adjust.
1594 * spu-linux-nat.c (spu_child_wait): Adjust.
1595 * windows-nat.c (windows_wait, windows_pid_to_str): Adjust.
1596
1597 2009-02-06 Tom Tromey <tromey@redhat.com>
1598
1599 * Makefile.in (SUBDIR_PYTHON_OBS): Add python-cmd.o.
1600 (SUBDIR_PYTHON_SRCS): Add python-cmd.c.
1601 (python-cmd.o): New target.
1602 * cli/cli-decode.c (set_cmd_completer): Add self parameter to
1603 completer prototype.
1604 (add_cmd): Initialize destroyer member of cmd_list_element. Use
1605 make_symbol_completion_list_fn as completer.
1606 (delete_cmd): Call destroyer if one is set.
1607 * cli/cli-decode.h (cmd_list_element): Add cmd parameter to
1608 completer member. Add destroyer member.
1609 (set_cmd_completer): Add self parameter to
1610 completer prototype.
1611 * command.h (set_cmd_completer): Add cmd parameter to
1612 completer prototype.
1613 * completer.c (noop_completer, filename_completer,
1614 location_completer, expression_completer, command_completer): Adapt
1615 to new completer prototype.
1616 (complete_line_internal): Pass new parameter to completer function.
1617 * completer.h (noop_completer, filename_completer,
1618 location_completer, expression_completer, command_completer): Adapt
1619 prototypes to new completer prototype.
1620 * interps.c (interpreter_completer): Adapt to new completer
1621 prototype.
1622 * python/python-cmd.c: New file.
1623 * python/python-internal.h (gdbpy_initialize_commands): Add
1624 prototype.
1625 (gdbpy_doc_cst): Add forward declaration.
1626 * python/python.c (gdbpy_doc_cst): Declare.
1627 (_initialize_python): Call gdbpy_initialize_commands. Initialize
1628 gdbpy_doc_cst.
1629 * symtab.c (make_symbol_completion_list_fn): New function.
1630 * symtab.h (make_symbol_completion_list_fn): Add prototype.
1631
1632 2009-02-06 Pedro Alves <pedro@codesourcery.com>
1633
1634 * target.c (target_get_osdata): Check for equal or higher than
1635 process_stratum, not dummy_stratum.
1636
1637 2009-02-06 Pedro Alves <pedro@codesourcery.com>
1638
1639 * remote.c (extended_remote_can_run): Delete.
1640 (init_remote_ops): Don't register it.
1641 * target.c (target_get_osdata): Don't check for target_can_run.
1642 Instead any target that has already been pushed, otherwise
1643 fallback to the default run target.
1644
1645 2009-02-06 Pedro Alves <pedro@codesourcery.com>
1646
1647 * target.c (target_create_inferior, target_detach)
1648 (target_mourn_inferior, target_attach, target_close): Do target
1649 debug output.
1650 (debug_to_attach, debug_to_detach, debug_to_create_inferior)
1651 (debug_to_mourn_inferior, debug_to_close): Delete.
1652 (setup_target_debug): Adjust.
1653
1654 2009-02-05 Pedro Alves <pedro@codesourcery.com>
1655
1656 * target.h (target_stopped_data_address_p): Delete declaration,
1657 and don't define as macro.
1658 * target.c (target_stopped_data_address_p): Delete.
1659
1660 2009-02-05 Thiago Jung Bauermann <bauerman@br.ibm.com>
1661 Tom Tromey <tromey@redhat.com>
1662
1663 * python/python-utils.c (target_string_to_unicode): New function.
1664 * python/python-internal.h (target_string_to_unicode): New prototype.
1665 * python/python-value.c (valpy_string): New function.
1666 (value_object_methods): Add `string' entry.
1667
1668 2009-02-05 Pedro Alves <pedro@codesourcery.com>
1669
1670 * target.h (target_tid_to_str): Delete.
1671 * thread.c (print_thread_info, thread_apply_all_command)
1672 (thread_apply_command, thread_command, do_captured_thread_select):
1673 Use target_pid_to_str instead of target_tid_to_str.
1674 * linux-fork.c (delete_fork_command): Likewise.
1675
1676 2009-02-05 Pedro Alves <pedro@codesourcery.com>
1677
1678 * frame.c (has_stack_frames): Make public.
1679 (get_prev_frame): Don't allow a NULL this_frame anymore.
1680 * frame.h (has_stack_frames): Declare.
1681 * varobj.c (find_frame_addr_in_frame_chain): Don't ever pass NULL
1682 to get_prev_frame, instead start at get_current_frame.
1683 (varobj_create): Check has_stack_frames before getting any frame;
1684 eliminate one usage of deprecated_safe_get_selected_frame.
1685
1686 2009-02-05 Tom Tromey <tromey@redhat.com>
1687 Thiago Jung Bauermann <bauerman@br.ibm.com>
1688
1689 * python/python.c (GdbMethods): Move to bottom of file.
1690 (get_parameter, execute_gdb_command, gdbpy_write,
1691 gdbpy_flush): Remove forward declarations.
1692 (eval_python_from_control_command): Fix error checking of function
1693 PyRun_SimpleString. Fix error string.
1694 (python_command): Likewise.
1695 (execute_gdb_command): Added from_tty argument.
1696
1697 2009-02-05 Thiago Jung Bauermann <bauerman@br.ibm.com>
1698
1699 * language.h (language_dfn): Add la_get_string member.
1700 (LA_GET_STRING): New macro.
1701 (default_get_string): New prototype.
1702 * language.c (default_get_string): New function.
1703 (unknown_language_defn, auto_language_defn, local_language_defn): Use
1704 default_get_string for la_get_string.
1705 * c-lang.c (c_get_string): New function.
1706 (c_language_defn, cplus_language_defn, asm_language_defn): Use
1707 c_get_string for la_get_string.
1708 (minimal_language_defn): Likewise
1709 * ada-lang.c (ada_language_defn): Likewise.
1710 * f-lang.c (f_language_defn): Use default_get_string for
1711 la_get_string.
1712 * jv-lang.c (java_language_defn): Likewise.
1713 * m2-lang.c (m2_language_defn): Likewise.
1714 * objc-lang.c (objc_language_defn): Likewise.
1715 * p-lang.c (p_language_defn): Likewise.
1716 * scm-lang.c (scm_language_defn): Likewise.
1717 * typeprint.c (type_to_string): New function.
1718 * value.h (type_to_string): New prototype.
1719 * valprint.c (val_print_string): Factor out code for reading string
1720 from the inferior into its own function. Put 2 spaces after period
1721 in comments.
1722 (read_string): New function.
1723 * valprint.h (read_string): New prototype.
1724
1725 2009-01-07 Pierre Muller <muller@ics.u-strasbg.fr>
1726 Tom Tromey <tromey@redhat.com>
1727
1728 PR breakpoints/8079:
1729 * breakpoint.c (print_one_breakpoint): Use exp_string field
1730 to display expression of watchpoints.
1731 (mention): Likewise.
1732 (watch_command_1): Remove trailing whitespace from expression.
1733 * printcmd.c (struct display) <exp_string>: New field.
1734 (display_command): Set exp_string.
1735 (free_display): Free exp_string.
1736 (clear_displays): Use free_display.
1737 (do_one_display): Print exp_string.
1738 (display_info): Likewise.
1739
1740 2009-02-04 Tom Tromey <tromey@redhat.com>
1741 Thiago Jung Bauermann <bauerman@br.ibm.com>
1742 Phil Muldoon <pmuldoon@redhat.com>
1743
1744 * python/python-internal.h (gdbpy_get_value_from_history): Rename
1745 prototype to gdbpy_history.
1746 (gdbpy_is_string): Declare.
1747 (python_string_to_host_string): Declare.
1748 * python/python-utils.c (gdbpy_is_string): New function.
1749 (unicode_to_encoded_string): New function.
1750 (unicode_to_target_string): Use it.
1751 (python_string_to_host_string): New function.
1752 * python/python-value.c (valpy_address): New function.
1753 (convert_value_from_python): Use gdbpy_is_string. Change to throw
1754 Python exception instead of a GDB exception on error. Properly check
1755 Python booleans.
1756 (valpy_getitem): Convert field name to host string. Handle array
1757 accesses. Adapt to new behaviour of convert_value_from_python.
1758 (valpy_new): Adapt to new behaviour of convert_value_from_python.
1759 (enum valpy_opcode) <VALPY_LSH, VALPY_RSH, VALPY_BITAND,
1760 VALPY_BITXOR, VALPY_BITOR>: New constants.
1761 (valpy_binop): Update. Adapt to new behaviour of
1762 convert_value_from_python.
1763 (valpy_invert): New function.
1764 (valpy_lsh): Likewise.
1765 (valpy_rsh): Likewise.
1766 (valpy_and): Likewise.
1767 (valpy_or): Likewise.
1768 (valpy_xor): Likewise.
1769 (valpy_richcompare): Call convert_value_from_python instead of doing
1770 conversions itself.
1771 (is_intlike, valpy_int, valpy_long, valpy_float): New functions.
1772 (gdbpy_get_value_from_history): Rename
1773 function to gdbpy_history.
1774 (gdbpy_initialize_values): Don't set tp_new.
1775 (value_object_type): Add valpy_new.
1776 (value_object_methods): Add `address' entry.
1777 (value_object_as_number): Update for new methods.
1778 * python/python.c (GdbMethods): Rename entry from
1779 `get_value_from_history' to `history'.
1780
1781 2009-02-04 Jerome Guitton <guitton@adacore.com>
1782
1783 * ada-lang.c (ada_template_to_fixed_record_type_1): Check size
1784 of type to guard against a crash.
1785
1786 2009-02-04 Jerome Guitton <guitton@adacore.com>
1787
1788 * value.c (value_from_contents_and_address): Always return
1789 a lval_memory value, even if address is null.
1790
1791 2009-02-04 Tristan Gingold <gingold@adacore.com>
1792
1793 * i386-darwin-tdep.c (i386_darwin_sigcontext_addr): New function.
1794 (amd64_darwin_sigcontext_addr): Ditto.
1795 (darwin_dwarf_signal_frame_p): Ditto.
1796 (i386_darwin_init_abi): Handle signal frames, use the const for
1797 sc_num_regs.
1798 (x86_darwin_init_abi_64): Ditto.
1799
1800 2009-02-04 Tristan Gingold <gingold@adacore.com>
1801
1802 * i386-tdep.c (i386_sigtramp_p): Make it public.
1803 * i386-tdep.h (i386_sigtramp_p): Declare.
1804
1805 2009-02-04 Tristan Gingold <gingold@adacore.com>
1806
1807 * machoread.c (macho_symfile_read): Read minsymtab also from
1808 shared libraries.
1809 (macho_symfile_read): Try to read dwarf2 frame info from main
1810 object file, but not from OSO files.
1811 (macho_symfile_offsets): Update section names for latest BFD
1812 changes.
1813 * i386-darwin-tdep.c (i386_darwin_init_abi): Call set_solib_ops.
1814 (x86_darwin_init_abi_64): Ditto.
1815 * solib-darwin.c: New file.
1816 * solib-darwin.h: New file.
1817 * configure.tgt: Add solib.o solib-darwin.o for Darwin.
1818
1819 2009-02-04 Tristan Gingold <gingold@adacore.com>
1820
1821 * solist.h (struct target_so_ops): Comment fallback behavior for
1822 operation same.
1823
1824 2009-02-03 Tom Tromey <tromey@redhat.com>
1825
1826 * completer.c (add_struct_fields): Check type_name against NULL
1827 before use.
1828
1829 2009-02-03 Joel Brobecker <brobecker@adacore.com>
1830
1831 * MAINTAINERS: Update Elena's email address.
1832
1833 2009-02-02 Joel Brobecker <brobecker@adacore.com>
1834
1835 * breakpoint (update_watchpoint): Minor comment adjustment.
1836
1837 2009-02-02 Tom Tromey <tromey@redhat.com>
1838
1839 PR gdb/9594:
1840 * completer.c (count_struct_fields): Count method names.
1841 (add_struct_fields): Add matching method names.
1842
1843 2009-02-02 Doug Evans <dje@google.com>
1844
1845 * configure.ac (gdbkt): Check both no_tcl/no_tk first, before
1846 doing any further tcl/tk configury. Don't configure gdbtk if
1847 tcl or tk check fails.
1848 * aclocal.m4: Regenerate.
1849 * configure: Regenerate.
1850
1851 2009-02-02 Tom Tromey <tromey@redhat.com>
1852
1853 PR exp/9059:
1854 * valops.c (find_overload_match): Follow typedefs before taking
1855 address of object argument.
1856
1857 2009-02-01 Doug Evans <dje@google.com>
1858
1859 * target.h (target_waitstatus_to_string): Declare.
1860 * target.c (target_waitstatus_to_string): New function. Copied from
1861 debug_to_wait. Add missing entries for TARGET_WAITKIND_SYSCALL_ENTRY,
1862 TARGET_WAITKIND_SYSCALL_RETURN, TARGET_WAITKIND_IGNORE,
1863 TARGET_WAITKIND_NO_HISTORY.
1864 (debug_to_wait): Call it.
1865 * infrun.c (wait_for_inferior): If debug_infrun, print result of
1866 target_wait.
1867 (fetch_inferior_event): Ditto.
1868
1869 2009-01-30 Tom Tromey <tromey@redhat.com>
1870
1871 * Makefile.in (HFILES_NO_SRCDIR): Remove i386-cygwin-tdep.h.
1872
1873 2009-01-30 Vladimir Prus <vladimir@codesourcery.com>
1874
1875 PR 8145.
1876 * thread.c (do_captured_list_thread_ids): Report the current
1877 thread id.
1878
1879 2009-01-30 Vladimir Prus <vladimir@codesourcery.com>
1880
1881 * breakpoint.c (create_breakpoint, create_breakpoints)
1882 (break_command_really, set_breakpoint): New parameter enabled.
1883 (create_breakpoint, break_command_really): Make breakpoint
1884 disabled if so requested.
1885 * breakpoint.h (set_breakpoint): New parameter enabled.
1886 * mi/mi-cmd-break.c (mi_cmd_break_insert): Handle the -d option.
1887
1888 2009-01-28 Doug Evans <dje@google.com>
1889
1890 * amd64-tdep.h (amd64_displaced_step_copy_insn): Declare.
1891 (amd64_displaced_step_fixup): Declare.
1892 * amd64-tdep.c: #include opcode/i386.h, dis-asm.h.
1893 (amd64_arch_regmap): Move out of amd64_analyze_stack_align
1894 and make static global.
1895 (amd64_arch_regmap_len): New static global.
1896 (amd64_arch_reg_to_regnum): New function.
1897 (struct amd64_insn): New struct.
1898 (struct displaced_step_closure): New struct.
1899 (onebyte_has_modrm,twobyte_has_modrm): New static globals.
1900 (rex_prefix_p,skip_prefixes)
1901 (amd64_insn_length_fprintf,amd64_insn_length_init_dis)
1902 (amd64_insn_length,amd64_get_unused_input_int_reg)
1903 (amd64_get_insn_details,fixup_riprel,fixup_displaced_copy)
1904 (amd64_displaced_step_copy_insn)
1905 (amd64_absolute_jmp_p,amd64_absolute_call_p,amd64_ret_p)
1906 (amd64_call_p,amd64_breakpoint_p,amd64_syscall_p)
1907 (amd64_displaced_step_fixup): New functions.
1908 * amd64-linux-tdep.c: #include arch-utils.h.
1909 (amd64_linux_init_abi): Install displaced stepping support.
1910
1911 2009-01-28 Daniel Jacobowitz <dan@codesourcery.com>
1912 Jerome Guitton <guitton@adacore.com>
1913
1914 * configure, config.in: Regenerated.
1915 * configure.ac: Add --with-system-gdbinit.
1916 * main.c (get_init_files): New.
1917 (captured_main): Use get_init_files. Load system gdbinit before
1918 $HOME/.gdbinit.
1919 (print_gdb_help): Print location of init files.
1920
1921 2009-01-28 Pedro Alves <pedro@codesourcery.com>
1922
1923 * corefile.c (generic_search): Delete disabled code.
1924 * gdbcore.h (generic_search): Delete declaration.
1925
1926 2009-01-26 Pedro Alves <pedro@codesourcery.com>
1927
1928 * linux-nat.c (linux_child_follow_fork): Copy attach_flag from the
1929 parent to the child.
1930 * inf-ttrace.c (inf_ttrace_follow_fork): Likewise.
1931 * inf-ptrace.c (inf_ptrace_follow_fork): Likewise. Use
1932 remove_breakpoints to remove breakpoints from the parent.
1933
1934 2009-01-26 Pedro Alves <pedro@codesourcery.com>
1935
1936 PR backtrace/9458, PR backtrace/8864:
1937 * frame.c (create_new_frame): Update the frame's cached PC before
1938 finding its unwinder. Use frame_id_build to build the new frame's
1939 id.
1940 * stack.c (parse_frame_specification_1): Correct setting ``addrs''
1941 array values from the ``args'' array values.
1942
1943 2009-01-26 Pedro Alves <pedro@codesourcery.com>
1944
1945 * gdbtypes.c (alloc_type, alloc_type_instance, create_range_type)
1946 (create_array_type, create_set_type, init_flags_type)
1947 (copy_type_recursive): Replace pairs of calls to XALLOC and memset
1948 with a call to XZALLOC or XCALLOC, and pairs of calls to
1949 obstack_alloc and memset with a call to OBSTACK_ZALLOC.
1950
1951 2009-01-26 Pedro Alves <pedro@codesourcery.com>
1952
1953 Add "maint set|show internal-error|internal-warning quit|corefile
1954 ask|yes|no" commands.
1955
1956 PR gdb/7580:
1957 * utils.c (internal_problem_ask, internal_problem_yes)
1958 (internal_problem_no, internal_problem_modes): New.
1959 (struct internal_problem): Remove FIXME. Make should_quit and
1960 should_dump_core types to char *.
1961 (internal_vproblem, internal_error_problem)
1962 (internal_warning_problem): Adjust.
1963 (set_internal_problem_cmd, show_internal_problem_cmd): New dummy
1964 functions.
1965 (add_internal_problem_command): New.
1966 (_initialize_utils): New.
1967
1968 2009-01-25 Pedro Alves <pedro@codesourcery.com>
1969
1970 * infcmd.c (program_info): Use paddress instead of casting stop_pc
1971 to unsigned long.
1972
1973 2009-01-24 Pedro Alves <pedro@codesourcery.com>
1974
1975 * infrun.c (normal_stop): Don't call
1976 deprecated_update_frame_pc_hack.
1977 * frame.c (deprecated_update_frame_pc_hack)
1978 (deprecated_update_frame_base_hack): Delete, and ...
1979 (create_new_frame): ... inline here.
1980 * frame.h (deprecated_update_frame_pc_hack)
1981 (deprecated_update_frame_base_hack): Delete declarations.
1982
1983 2009-01-23 Pedro Alves <pedro@codesourcery.com>
1984
1985 * cli/cli-decode.c (add_setshow_zuinteger_cmd): New.
1986 * cli/cli-setshow.c (do_setshow_command): Handle it.
1987 * command.h (enum var_types): Add var_zuinteger.
1988 (add_setshow_zuinteger_cmd): Declare.
1989
1990 * valprint.c (_initialize_valprint): Change the set input-radix
1991 and set output-radix commands to zuinteger type.
1992
1993 2009-01-23 Pedro Alves <pedro@codesourcery.com>
1994
1995 PR gdb/9664:
1996 * infrun.c (normal_stop): Tag threads as stopped, and run the
1997 hook-stop before printing the stack frame.
1998
1999 2009-01-22 Pedro Alves <pedro@codesourcery.com>
2000
2001 PR c++/9631:
2002 * gnu-v3-abi.c (gnuv3_baseclass_offset): Call check_typedef on
2003 vbasetype.
2004
2005 2009-01-20 Kazu Hirata <kazu@codesourcery.com>
2006
2007 * gdb/procfs.c (info_mappings_callback): Cast map->pr_size to
2008 unsigned long.
2009
2010 2009-01-20 Daniel Jacobowitz <dan@codesourcery.com>
2011
2012 PR gdb/9346
2013 * infcmd.c (signal_command): Do not specify a resume PC.
2014
2015 2009-01-19 Doug Evans <dje@google.com>
2016
2017 * dummy-frame.c (dummy_frame): Replace regcache member with
2018 caller_state.
2019 (dummy_frame_push): Replace caller_regcache arg with caller_state.
2020 All callers updated.
2021 (remove_dummy_frame,pop_dummy_frame,lookup_dummy_frame): New fns.
2022 (dummy_frame_pop): Rewrite. Verify requested frame is in the
2023 dummy frame stack. Restore program state.
2024 (cleanup_dummy_frames): Rewrite.
2025 (dummy_frame_sniffer): Update. Make static.
2026 * dummy-frame.h (regcache,frame_info): Delete forward decls.
2027 (inferior_thread_state): New forward decl.
2028 (dummy_frame_push): Update prototype.
2029 * frame.c (frame_pop): dummy_frame_pop now does all the work for
2030 DUMMY_FRAMEs.
2031 * infcall.c (breakpoint_auto_delete_contents): Delete.
2032 (get_function_name,run_inferior_call): New fns.
2033 (call_function_by_hand): Simplify by moving some code to
2034 get_function_name, run_inferior_call. Inferior function call wrapped
2035 in TRY_CATCH so there's less need for cleanups and all exits from
2036 proceed are handled similarily. Detect program exit.
2037 Detect program stopping in a different thread.
2038 Make error messages more consistent.
2039 * inferior.h (inferior_thread_state): Declare (opaque type).
2040 (save_inferior_thread_state,restore_inferior_thread_state,
2041 make_cleanup_restore_inferior_thread_state,
2042 discard_inferior_thread_state, get_inferior_thread_state_regcache):
2043 Declare.
2044 (save_inferior_status): Update prototype.
2045 * infrun.c: (normal_stop): When stopped for the completion of an
2046 inferior function call, verify the expected stack frame kind.
2047 (inferior_thread_state): New struct.
2048 (save_inferior_thread_state,restore_inferior_thread_state,
2049 do_restore_inferior_thread_state_cleanup,
2050 make_cleanup_restore_inferior_thread_state,
2051 discard_inferior_thread_state,
2052 get_inferior_thread_state_regcache): New functions.
2053 (inferior_status): Move stop_signal, stop_pc, registers to
2054 inferior_thread_state. Remove restore_stack_info.
2055 (save_inferior_status): Remove arg restore_stack_info.
2056 All callers updated. Remove saving of state now saved by
2057 save_inferior_thread_state.
2058 (restore_inferior_status): Remove restoration of state now done by
2059 restore_inferior_thread_state.
2060 (discard_inferior_status): Remove freeing of registers, now done by
2061 discard_inferior_thread_state.
2062
2063 2009-01-18 Pedro Alves <pedro@codesourcery.com>
2064
2065 * tui/tui-disasm.c (tui_vertical_disassem_scroll): Scroll one line
2066 at a time, times NUM_TO_SCROLL.
2067 * tui/tui-winsource.c (tui_horizontal_source_scroll): Don't try to
2068 fetch the selected frame if there is no stack.
2069
2070 2009-01-18 Pedro Alves <pedro@codesourcery.com>
2071
2072 PR gdb/9747:
2073 * gdbthread.h (finish_thread_state, finish_thread_state_cleanup):
2074 Declare.
2075 * thread.c (finish_thread_state, finish_thread_state_cleanup): New.
2076 * infrun.c (wait_for_inferior, fetch_inferior_event): If an error
2077 is thrown while handling an event, finish the thread state.
2078 (normal_stop): Use finish_thread_state cleanup.
2079 * infcmd.c (run_command_1): If an error is thrown while starting
2080 the inferior, finish the thread state.
2081
2082 2009-01-18 Pedro Alves <pedro@codesourcery.com>
2083
2084 * tui/tui-winsource.c (tui_update_breakpoint_info): In asm layout,
2085 skip breakpoints without a location (pending breakpoints).
2086
2087 2009-01-18 Pedro Alves <pedro@codesourcery.com>
2088
2089 PR build/9186:
2090 * hppa-hpux-tdep.c (hppa_hpux_write_pc): Remove 'return'.
2091
2092 2009-01-18 Nick Roberts <nickrob@snap.net.nz>
2093
2094 * thread.c (thread_command): Move call to annotate_thread_changed
2095 to...
2096 (do_captured_thread_select): ... here, to avoid printing an
2097 annotation if the thread change generates an exception.
2098
2099 2009-01-16 Joel Brobecker <brobecker@adacore.com>
2100
2101 * NEWS: Document x86_64/MinGW as a new native configuration.
2102
2103 2009-01-16 Joel Brobecker <brobecker@adacore.com>
2104
2105 * NEWS: Move the documentation of "info os processes" to
2106 the appropriate section (documenting the new commands).
2107
2108 2009-01-15 Doug Evans <dje@google.com>
2109
2110 * target.h (target_signal_to_string): Make return type const char *.
2111 (target_signal_to_name): Ditto.
2112 (target_signal_from_name): Make arg const char *.
2113 * infrun.c (sig_print_info): Update.
2114 * signals/signals.c (signals): Make array and struct members const.
2115 (target_signal_to_string): Make return type const char *.
2116 (target_signal_to_name): Ditto.
2117 (target_signal_from_name): Make arg const char *.
2118
2119 2009-01-15 Ulrich Weigand <uweigand@de.ibm.com>
2120 Tristan Gingold <gingold@adacore.com>
2121
2122 * solist.h (struct target_so_ops): New member bfd_open.
2123 (solib_find): Add prototype.
2124 (solib_bfd_fopen): Add prototype.
2125 * solib.c (solib_find, solib_bfd_fopen): New functions, extracted
2126 from solib_bfd_open.
2127 (solib_bfd_open): Use ops->bfd_open override if present. Call
2128 solib_find and solib_bfd_open otherwise.
2129
2130 * objfiles.h (OBJF_KEEPBFD): New define.
2131 * objfiles.c (free_objfile): Do not close BFD if OBJF_KEEPBFD
2132 objfile flag is set.
2133 * solib.c (symbol_add_stub): Do not allocate second BFD for
2134 shared library; use OBJF_KEEPBFD flag on solib objfile.
2135
2136 2009-01-15 Ulrich Weigand <uweigand@de.ibm.com>
2137
2138 * frame.c (get_frame_arch): Abort if called with NULL this_frame.
2139
2140 2009-01-15 Ulrich Weigand <uweigand@de.ibm.com>
2141
2142 * value.h (address_of_variable): Add prototype.
2143 (locate_var_value): Remove prototype.
2144
2145 * findvar.c (read_var_value): Do not attempt to default frame
2146 to selected frame.
2147 (locate_var_value): Remove function.
2148 * valops.c (value_of_variable): Retrieve selected frame for
2149 symbols that require a frame when called with NULL block.
2150 * valops.c (address_of_variable): New function.
2151
2152 * eval.c (evaluate_subexp_for_address): Call address_of_variable
2153 instead of calling locate_var_value.
2154 (evaluate_subexp_with_coercion): Likewise.
2155
2156 2009-01-14 Daniel Jacobowitz <dan@codesourcery.com>
2157
2158 * NEWS: Document "define" for prefixed commands.
2159 * cli/cli-cmds.c (show_user): Update calls to show_user_1. Call
2160 show_user_1 for prefix commands.
2161 * cli/cli-decode.c (help_cmd_list): Recurse for "help user-defined".
2162 * cli/cli-script.c (validate_comname): Rewrite to handle prefix
2163 commands. Return the containing command list.
2164 (define_command, document_command): Update to handle prefix commands.
2165 (show_user_1): Add prefix and name arguments. Handle prefix
2166 commands.
2167 * cli/cli-script.h (show_user_1): Update prototype.
2168
2169 2009-01-14 Kai Tietz <kai.tietz@onevision.com>
2170
2171 * mingw-ser.c (console_select_thread): Add return to make
2172 compiler happy.
2173 (pipe_select_thread): Likewise.
2174 (file_select_thread): Likewise.
2175
2176 2009-01-14 Pedro Alves <pedro@codesourcery.com>
2177
2178 * mi/mi-main.c (mi_cmd_execute): Clean up parenthesis mess from
2179 previous change.
2180
2181 2009-01-14 Pedro Alves <pedro@codesourcery.com>
2182
2183 * remote.c (extended_remote_mourn_1): Invalidate our notion of
2184 current general thread.
2185
2186 2009-01-14 Pedro Alves <pedro@codesourcery.com>
2187
2188 * mi/mi-main.c (mi_cmd_execute): Also allow -list-thread-groups
2189 without a live selected thread.
2190
2191 2009-01-14 Joel Brobecker <brobecker@adacore.com>
2192
2193 Update the copyright notice of some of the files I missed
2194 in the previous copyright update.
2195
2196 2009-01-14 Joel Brobecker <brobecker@adacore.com>
2197
2198 * windows-nat.c (handle_unload_dll): Use %p to print the DLL
2199 base address instead of casting it to DWORD.
2200
2201 2009-01-13 Ulrich Weigand <uweigand@de.ibm.com>
2202
2203 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Do not call get_frame_arch
2204 for NULL frame pointers.
2205
2206 2009-01-13 Mark Kettenis <kettenis@gnu.org>
2207
2208 * utils.c (host_address_to_string): Reimplement in a way that
2209 avoids the cast of the address to long.
2210
2211 2009-01-13 Joel Brobecker <brobecker@adacore.com>
2212
2213 * mdebugread.c (parse_symbol): Save the symbol private data
2214 using SYMBOL_VALUE_BYTES instead of SYMBOL_VALUE.
2215 (psymtab_to_symtab_1): Likewise.
2216 (parse_procedure): Declare variable "e" only in the scope
2217 where it is used. Extract the symbol private data using
2218 SYMBOL_VALUE_BYTES.
2219
2220 2009-01-13 Jim Blandy <jimb@codesourcery.com>
2221
2222 Abstract out common code for copying value locations.
2223
2224 * value.h (set_value_component_location): New declaration.
2225 * value.c (set_value_component_location): New function.
2226 (value_primitive_field): Use it.
2227 * valarith.c (value_subscript, value_subscripted_rvalue): Same.
2228 * valops.c (search_struct_field, value_slice): Same.
2229 * ada-lang.c (coerce_unspec_val_to_type)
2230 (ada_value_primitive_packed_val): Same.
2231
2232 2009-01-13 Joel Brobecker <brobecker@adacore.com>
2233
2234 * MAINTAINERS (GLOBAL MAINTAINERS): Add Tom Tromey.
2235
2236 2009-01-12 Christopher Faylor <me+cygwin@cgf.cx>
2237
2238 * amd64-windows-nat.c Rename gdb-specific win32_* to windows_*
2239 throughout.
2240 * i386-cygwin-tdep.c: Ditto.
2241 * i386-windows-nat.c: Ditto.
2242 * windows-nat.h: Ditto.
2243 * windows-tdep.c: Ditto.
2244 * windows-tdep.h: Ditto.
2245 * windows-nat.c: Ditto.
2246 (cygwin_load_start): Redefine as CORE_ADDR.
2247 (cygwin_load_end): Ditto.
2248 (windows_make_so): Coerce result of address arithmetic to uintptr_t
2249 before coercing to CORE_ADDR to avoid a compiler warning.
2250 (handle_exception): Define addr as CORE_ADDR and coerce
2251 ExceptionAddress to uintptr_t before assigining to avoid a compiler
2252 warning.
2253 * config/djgpp/fnchange.lst: Add mappings for recently renamed windows
2254 files.
2255
2256 2009-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
2257
2258 Fix linking with --enable-targets=all:
2259 * Makefile.in (ALL_TARGET_OBS): Add windows-tdep.o.
2260 (HFILES_NO_SRCDIR): Add windows-tdep.h.
2261 (ALLDEPFILES): Add windows-tdep.c.
2262
2263 2009-01-11 Chris Faylor <me.gdb@cgf.cx>
2264
2265 * win32-nat.h: Delete.
2266 * windows-nat.h: Rename from win32-nat.h.
2267 * win32-nat.c: Delete.
2268 * windows-nat.c: Rename from win32-nat.c.
2269 * win32-termcap.c: Delete.
2270 * windows-termcap.c: Rename from win32-termcap.c.
2271 * amd64-windows-nat.c: Handle rename from win32-nat.h -> windows-nat.h.
2272 * configure.ac: Handle rename from win32-termcap.c ->
2273 windows-termcap.c.
2274 * configure: Regenerate.
2275 * gdb_curses.h: Change comment to reflect rename from win32-termcap.c
2276 -> windows-termcap.c.
2277 * i386-cygwin-tdep.c: Handle rename from win32-tdep.h ->
2278 windows-tdep.h.
2279 * i386-windows-nat.c: Refect rename from win32-nat.h -> windows-nat.h.
2280 * windows-nat.c: Ditto. Also reflect rename from from win32-tdep.h ->
2281 windows-tdep.h.
2282 (win32_make_so): Handle cygwin compiler warning due to change of
2283 load_addr from DWORD to LPVOID.
2284 (handle_load_dll): Use %p in format string to properly print address
2285 and avoid a compiler warning.
2286 (DEBUG_EXCEPTION_SIMPLE): Ditto.
2287 (handle_exception): Ditto.
2288 * windows-tdep.c: Handle rename from win32-tdep.h -> windows-tdep.h.
2289 * config/i386/cygwin.mh: Handle rename from win32-nat.o ->
2290 windows-nat.o.
2291 * config/i386/mingw.mh: Ditto.
2292 * config/i386/mingw64.mh: Ditto.
2293
2294 2009-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
2295
2296 * f-typeprint.c (f_type_print_varspec_suffix): Convert the autovariable
2297 arrayprint_recurse_level to a parameter. Update all the callers. New
2298 comment at autovariables.
2299
2300 2009-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
2301
2302 * gdbtypes.c (make_qualified_type, replace_type): Reformat to the GNU
2303 coding style.
2304
2305 2009-01-11 Joel Brobecker <brobecker@adacore.com>
2306
2307 * target.c (target_xfer_partial): Use host_address_to_string to
2308 print the address of readbuf and writebuf. Cast the address of
2309 elements inside the myaddr buffer into intptr_t.
2310 (deprecated_debug_xfer_memory): Use paddress to print memaddr.
2311 Cast the address of elements inside the myaddr buffer into
2312 intptr_t.
2313
2314 2009-01-11 Joel Brobecker <brobecker@adacore.com>
2315
2316 * amd64-windows-nat.c, amd64-windows-tdep.c: New files.
2317 * config/i386/mingw64.mh, config/i386/nm-cygwin64.h: New files.
2318 * configure.host, configure.tgt: Add handling for x86_64/windows.
2319 * config/djgpp/fnchange.lst: Add entries for amd64-windows-nat.c
2320 and amd64-windows-tdep.c.
2321
2322 2009-01-11 Joel Brobecker <brobecker@adacore.com>
2323
2324 * win32-tdep.h, win32-tdep.c: New files.
2325 * i386-cygwin-tdep.h: Delete.
2326 * i386-cygwin-tdep.c: Include win32-tdep.h instead of
2327 i386-cygwin-tdep.h.
2328 (win32_xfer_shared_library): Delete. Moved to win32-tdep.c.
2329 * win32-nat.c: Likewise.
2330 * configure.tgt: Add win32-tdep.o to the list of target object
2331 files for i386-cygwin and i386-mingw targets.
2332
2333 2009-01-11 Joel Brobecker <brobecker@adacore.com>
2334
2335 * win32-nat.h: New file.
2336 * win32-nat.c (mappings): Initialize to NULL.
2337 (win32_set_context_register_offsets): New function.
2338 * i386-windows-nat.c: New file.
2339 (mappings): Moved here from win32-nat.c.
2340 (_initialize_i386_windows_nat): New function.
2341 * config/i386/mingw.mh (NATDEPFILES): Add i386-windows-nat.o.
2342 * config/i386/cygwin.mh (NATDEPFILES): Likewise.
2343
2344 2009-01-09 Andreas Schwab <schwab@suse.de>
2345
2346 * Makefile.in (init.c): Set LANG/LC_ALL to C, not c.
2347
2348 2009-01-09 Daniel Jacobowitz <dan@codesourcery.com>
2349
2350 * gdbtypes.c (append_composite_type_field): Correct the location of
2351 appended fields.
2352
2353 2009-01-09 Pedro Alves <pedro@codesourcery.com>
2354
2355 * defs.h (deprecated_error_hook): Delete declaration.
2356 * interps.c (clear_interpreter_hooks): Adjust.
2357 * remote-sim.c (gdb_os_error): Don't try to call
2358 deprecated_error_hook. No need to call exit anymore.
2359 * top.c (deprecated_error_hook): Delete.
2360
2361 2009-01-09 Joel Brobecker <brobecker@adacore.com>
2362
2363 * arch-utils.c (gdbarch_update_p): Use host_address_to_string
2364 to print the address of the gdbarch pointer.
2365
2366 2009-01-09 Joel Brobecker <brobecker@adacore.com>
2367
2368 * gdbarch.sh: Fix all the compilation errors on amd64-windows
2369 due to casting a pointer to a long when printing a function
2370 address. Instead, use host_address_to_string to convert our
2371 address to a string.
2372 * gdbarch.c: Regenerate.
2373
2374 2009-01-09 Joel Brobecker <brobecker@adacore.com>
2375
2376 * event-top.c (async_disconnect, async_stop_sig): use "raise"
2377 instead of "kill" to raise a signal.
2378
2379 2009-01-09 Joel Brobecker <brobecker@adacore.com>
2380
2381 * win32-nat.c (get_module_name): Change the type of parameter
2382 "base_address" to LPVOID. Remove unnecessary cast.
2383 (struct lm_info): Change type of load_addr to LPVOID.
2384 (win32_make_so): Change the type of parameter "load_addr"
2385 to LPVOID. Remove some unnecessary casts.
2386 (handle_unload_dll): Change the type of "lpBaseOfDll" to LPVOID.
2387 (win32_xfer_shared_libraries): Add missing cast.
2388
2389 2009-01-09 Joel Brobecker <brobecker@adacore.com>
2390
2391 * win32-nat.c (has_detach_ability, set_process_privilege):
2392 Cast the result of GetProcAddress to (void *) to avoid
2393 a compilation warning.
2394
2395 2009-01-09 Joel Brobecker <brobecker@adacore.com>
2396
2397 * win32-nat.c (CONTEXT_EXTENDED_REGISTERS): Define to 0 if not
2398 already defined.
2399
2400 2009-01-09 Joel Brobecker <brobecker@adacore.com>
2401
2402 * win32-nat.c (get_image_name, win32_xfer_memory): Fix type
2403 definition of local variable "done".
2404 (info_w32_command, handle_exception): Remove unnecessary cast.
2405
2406 2009-01-09 Joel Brobecker <brobecker@adacore.com>
2407
2408 * win32-nat.c (kernel32_DebugSetProcessKillOnExit): Renames
2409 DebugSetProcessKillOnExit. Update all uses in this file.
2410 (kernel32_DebugActiveProcessStop): Renames DebugActiveProcessStop.
2411 Update all uses in this file.
2412
2413 2009-01-09 Joel Brobecker <brobecker@adacore.com>
2414
2415 * win32-nat.c (do_initial_win32_stuff): Add new ops parameter,
2416 and use it when pushing the target.
2417 (win32_attach, win32_create_inferior): Update call to
2418 do_initial_win32_stuff.
2419 (win32_detach, win32_mourn_inferior): Use our ops parameter
2420 instead of the global win32_ops to unpush the target.
2421
2422 2009-01-09 Joel Brobecker <brobecker@adacore.com>
2423
2424 * ser-mingw.c (ser_windows_open): Use proper type when casting
2425 in call to _open_osfhandle.
2426
2427 2009-01-09 Kai Tietz <kai.tietz@onevision.com>
2428
2429 * coff-pe-read.c (read_pe_exported_syms): Fix typo.
2430
2431 2009-01-09 Joel Brobecker <brobecker@adacore.com>
2432
2433 * CONTRIBUTE: Minor reformatting.
2434
2435 2009-01-08 Kai Tietz <kai.tietz@onevision.com>
2436
2437 * MAINTAINERS: Add myself to Write After Approval.
2438 * coff-pe-read.c (read_pe_exported_syms): Enable read of PE+
2439 export directory.
2440
2441 2009-01-08 Nathan Froyd <froydnj@codesourcery.com>
2442
2443 * remote-sim.c (gdb_os_error): Mark as a noreturn function.
2444 Call exit to make it obvious to GCC.
2445
2446 2009-01-08 Tom Tromey <tromey@redhat.com>
2447
2448 PR breakpoints/9350:
2449 * varobj.c (varobj_invalidate): Unconditionally free
2450 all_rootvarobj.
2451 * symfile.c (syms_from_objfile): Free local_addr when returning
2452 normally.
2453 * exec.c (exec_file_attach): Do cleanups before returning.
2454 (exec_file_command): Likewise.
2455 * corefile.c (reopen_exec_file): Do cleanups before returning.
2456 * breakpoint.c (insert_breakpoint_locations): Do cleanups before
2457 returning.
2458 (do_vec_free): New function.
2459 (update_global_location_list): Make a cleanup for old_locations.
2460 Do cleanups before returning. Remove unused variable 'e'.
2461 (find_condition_and_thread): Free result of parsing the
2462 expression.
2463 (print_it_typical): Do cleanups before returning.
2464 (breakpoint_re_set_one): Always free sals.sals.
2465
2466 2009-01-08 Joel Brobecker <brobecker@adacore.com>
2467 Emi Suzuki <emi-suzuki@tjsys.co.jp>
2468
2469 * breakpoint.c (do_enable_breakpoint): Use update_watchpoint for
2470 watchpoints.
2471
2472 2009-01-07 Doug Evans <dje@google.com>
2473
2474 * top.c (gdb_prompt_string): Delete, unused.
2475
2476 2009-01-07 Pedro Alves <pedro@codesourcery.com>
2477
2478 Delete ONE_PROCESS_WRITETEXT leftovers.
2479
2480 * breakpoint.c (insert_bp_location): Delete process_warning
2481 argument. Adjust.
2482 (insert_breakpoint_locations): Adjust.
2483 (reattach_breakpoints): Adjust.
2484 * infrun.c (normal_stop): Drop "It might be running in another
2485 process" notice.
2486
2487 2009-01-07 Stan Shebs <stan@codesourcery.com>
2488
2489 * config/pa/linux.mh (XDEPFILES): Remove.
2490
2491 2009-01-07 Doug Evans <dje@google.com>
2492
2493 * cli/cli-cmds.c (set_debug): Fix cut-n-paste error.
2494
2495 2009-01-07 Jan Kratochvil <jan.kratochvil@redhat.com>
2496
2497 * f-typeprint.c (f_type_print_base <TYPE_CODE_STRUCT>): Fix output
2498 spacing, a regression from 2008-04-22.
2499
2500 2009-01-07 Joel Brobecker <brobecker@adacore.com>
2501
2502 * utils.c (gdb_print_host_address): Adjust implementation to
2503 reuse host_address_to_string. Move comment explaining the conversion
2504 from host address to string from here...
2505 (host_address_to_string): ... to there.
2506
2507 2009-01-07 Emi Suzuki <emi-suzuki@tjsys.co.jp>
2508
2509 * MAINTAINERS: Add myself for write after approval privileges.
2510
2511 2009-01-06 Tom Tromey <tromey@redhat.com>
2512
2513 * value.c (set_internalvar): Use value_free, not xfree.
2514
2515 2009-01-06 Jim Blandy <jimb@red-bean.com>
2516
2517 Check return values of functions declared with warn_unused_result
2518 attribute in GLIBC 2.8.
2519 * cli/cli-cmds.c (pwd_command): Check return value from getcwd.
2520 * inflow.c (check_syscall): New function.
2521 (new_tty): Use check_syscall to check return values from open and dup.
2522 * linux-nat.c (linux_nat_info_proc_cmd): Check return value from fgets.
2523 * main.c (captured_main): Call cwd after setting up gdb_stderr;
2524 check for errors from getcwd.
2525 * mi/mi-cmd-env.c (mi_cmd_env_pwd): Check return value from getcwd.
2526 * ui-file.c (stdio_file_write): Ignore return value from fwrite.
2527 (stdio_file_fputs): Same.
2528 * utils.c (internal_vproblem): abort if last-ditch error message
2529 write fails.
2530
2531 * top.c (gdb_init): Don't set the current directory here; that's
2532 already been done in captured_main.
2533
2534 2009-01-06 Sandra Loosemore <sandra@codesourcery.com>
2535
2536 * ser-tcp.c: Adjust includes.
2537 (tcp_set_cmdlist, tcp_show_cmdlist): Declare.
2538 (tcp_auto_retry, tcp_retry_limit): Declare.
2539 (TIMEOUT): Remove, in favor of tcp_retry_limit.
2540 (POLL_INTERVAL): Increase to 5, in favor of backoff logic.
2541 (wait_for_connect): New function.
2542 (net_open): Use it. Add auto-retry logic.
2543 (set_tcp_cmd, show_tcp_cmd): New functions.
2544 (_initialize_ser_tcp): Initialize new "set/show tcp auto-retry"
2545 and "set/show tcp connect-timeout" commands.
2546 * NEWS: Document new commands.
2547
2548 2009-01-05 Tom Tromey <tromey@redhat.com>
2549
2550 * python/python-internal.h (Py_ssize_t): Define as int.
2551
2552 2009-01-05 Jim Blandy <jimb@red-bean.com>
2553
2554 * MAINTAINERS: Fix my e-mail address as steering committee member.
2555
2556 2009-01-03 Joel Brobecker <brobecker@adacore.com>
2557
2558 Updated copyright notices for most files.
2559
2560 2009-01-03 Joel Brobecker <brobecker@adacore.com>
2561
2562 * top.c (print_gdb_version): Update copyright year.
2563
2564 2009-01-03 Joel Brobecker <brobecker@adacore.com>
2565
2566 * config/djgpp/fnchange.lst: Add entry for ChangeLog-2008.
2567
2568 2009-01-01 Pedro Alves <pedro@codesourcery.com>
2569
2570 PR breakpoints/9681:
2571 * exceptions.h (enum errors): New error type, MEMORY_ERROR.
2572 * corefile.c (memory_error): Rewrite to throw a MEMORY_ERROR.
2573 * breakpoint.c (fetch_watchpoint_value): Ignore MEMORY_ERRORs, but
2574 retrow all other exceptions.
2575
2576 For older changes see ChangeLog-2008.
2577 \f
2578 Local Variables:
2579 mode: change-log
2580 left-margin: 8
2581 fill-column: 74
2582 version-control: never
2583 coding: utf-8
2584 End: