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