Regenerate for copyright date update.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
b89667eb
DE
12009-01-19 Doug Evans <dje@google.com>
2
3 * dummy-frame.c (dummy_frame): Replace regcache member with
4 caller_state.
5 (dummy_frame_push): Replace caller_regcache arg with caller_state.
6 All callers updated.
7 (remove_dummy_frame,pop_dummy_frame,lookup_dummy_frame): New fns.
8 (dummy_frame_pop): Rewrite. Verify requested frame is in the
9 dummy frame stack. Restore program state.
10 (cleanup_dummy_frames): Rewrite.
11 (dummy_frame_sniffer): Update. Make static.
12 * dummy-frame.h (regcache,frame_info): Delete forward decls.
13 (inferior_thread_state): New forward decl.
14 (dummy_frame_push): Update prototype.
15 * frame.c (frame_pop): dummy_frame_pop now does all the work for
16 DUMMY_FRAMEs.
17 * infcall.c (breakpoint_auto_delete_contents): Delete.
18 (get_function_name,run_inferior_call): New fns.
19 (call_function_by_hand): Simplify by moving some code to
20 get_function_name, run_inferior_call. Inferior function call wrapped
21 in TRY_CATCH so there's less need for cleanups and all exits from
22 proceed are handled similarily. Detect program exit.
23 Detect program stopping in a different thread.
24 Make error messages more consistent.
25 * inferior.h (inferior_thread_state): Declare (opaque type).
26 (save_inferior_thread_state,restore_inferior_thread_state,
27 make_cleanup_restore_inferior_thread_state,
28 discard_inferior_thread_state, get_inferior_thread_state_regcache):
29 Declare.
30 (save_inferior_status): Update prototype.
31 * infrun.c: (normal_stop): When stopped for the completion of an
32 inferior function call, verify the expected stack frame kind.
33 (inferior_thread_state): New struct.
34 (save_inferior_thread_state,restore_inferior_thread_state,
35 do_restore_inferior_thread_state_cleanup,
36 make_cleanup_restore_inferior_thread_state,
37 discard_inferior_thread_state,
38 get_inferior_thread_state_regcache): New functions.
39 (inferior_status): Move stop_signal, stop_pc, registers to
40 inferior_thread_state. Remove restore_stack_info.
41 (save_inferior_status): Remove arg restore_stack_info.
42 All callers updated. Remove saving of state now saved by
43 save_inferior_thread_state.
44 (restore_inferior_status): Remove restoration of state now done by
45 restore_inferior_thread_state.
46 (discard_inferior_status): Remove freeing of registers, now done by
47 discard_inferior_thread_state.
48
aefc7064
PA
492009-01-18 Pedro Alves <pedro@codesourcery.com>
50
51 * tui/tui-disasm.c (tui_vertical_disassem_scroll): Scroll one line
52 at a time, times NUM_TO_SCROLL.
53 * tui/tui-winsource.c (tui_horizontal_source_scroll): Don't try to
54 fetch the selected frame if there is no stack.
55
29f49a6a
PA
562009-01-18 Pedro Alves <pedro@codesourcery.com>
57
58 PR gdb/9747:
59 * gdbthread.h (finish_thread_state, finish_thread_state_cleanup):
60 Declare.
61 * thread.c (finish_thread_state, finish_thread_state_cleanup): New.
62 * infrun.c (wait_for_inferior, fetch_inferior_event): If an error
63 is thrown while handling an event, finish the thread state.
64 (normal_stop): Use finish_thread_state cleanup.
65 * infcmd.c (run_command_1): If an error is thrown while starting
66 the inferior, finish the thread state.
67
e7243d73
PA
682009-01-18 Pedro Alves <pedro@codesourcery.com>
69
70 * tui/tui-winsource.c (tui_update_breakpoint_info): In asm layout,
71 skip breakpoints without a location (pending breakpoints).
72
e74994b5
PA
732009-01-18 Pedro Alves <pedro@codesourcery.com>
74
75 PR build/9186:
76 * hppa-hpux-tdep.c (hppa_hpux_write_pc): Remove 'return'.
77
8405c36e
NR
782009-01-18 Nick Roberts <nickrob@snap.net.nz>
79
80 * thread.c (thread_command): Move call to annotate_thread_changed
81 to...
82 (do_captured_thread_select): ... here, to avoid printing an
83 annotation if the thread change generates an exception.
84
b8bfd3ed
JB
852009-01-16 Joel Brobecker <brobecker@adacore.com>
86
87 * NEWS: Document x86_64/MinGW as a new native configuration.
88
2dde91e9
JB
892009-01-16 Joel Brobecker <brobecker@adacore.com>
90
91 * NEWS: Move the documentation of "info os processes" to
92 the appropriate section (documenting the new commands).
93
54363045
DE
942009-01-15 Doug Evans <dje@google.com>
95
96 * target.h (target_signal_to_string): Make return type const char *.
97 (target_signal_to_name): Ditto.
98 (target_signal_from_name): Make arg const char *.
54363045 99 * infrun.c (sig_print_info): Update.
54363045
DE
100 * signals/signals.c (signals): Make array and struct members const.
101 (target_signal_to_string): Make return type const char *.
102 (target_signal_to_name): Ditto.
103 (target_signal_from_name): Make arg const char *.
104
572d275c
UW
1052009-01-15 Ulrich Weigand <uweigand@de.ibm.com>
106 Tristan Gingold <gingold@adacore.com>
107
108 * solist.h (struct target_so_ops): New member bfd_open.
109 (solib_find): Add prototype.
110 (solib_bfd_fopen): Add prototype.
111 * solib.c (solib_find, solib_bfd_fopen): New functions, extracted
112 from solib_bfd_open.
113 (solib_bfd_open): Use ops->bfd_open override if present. Call
114 solib_find and solib_bfd_open otherwise.
115
116 * objfiles.h (OBJF_KEEPBFD): New define.
117 * objfiles.c (free_objfile): Do not close BFD if OBJF_KEEPBFD
118 objfile flag is set.
119 * solib.c (symbol_add_stub): Do not allocate second BFD for
120 shared library; use OBJF_KEEPBFD flag on solib objfile.
121
0701b271
UW
1222009-01-15 Ulrich Weigand <uweigand@de.ibm.com>
123
124 * frame.c (get_frame_arch): Abort if called with NULL this_frame.
125
61212c0f
UW
1262009-01-15 Ulrich Weigand <uweigand@de.ibm.com>
127
128 * value.h (address_of_variable): Add prototype.
129 (locate_var_value): Remove prototype.
130
131 * findvar.c (read_var_value): Do not attempt to default frame
132 to selected frame.
133 (locate_var_value): Remove function.
134 * valops.c (value_of_variable): Retrieve selected frame for
135 symbols that require a frame when called with NULL block.
136 * valops.c (address_of_variable): New function.
137
138 * eval.c (evaluate_subexp_for_address): Call address_of_variable
139 instead of calling locate_var_value.
140 (evaluate_subexp_with_coercion): Likewise.
141
adb483fe
DJ
1422009-01-14 Daniel Jacobowitz <dan@codesourcery.com>
143
144 * NEWS: Document "define" for prefixed commands.
145 * cli/cli-cmds.c (show_user): Update calls to show_user_1. Call
146 show_user_1 for prefix commands.
147 * cli/cli-decode.c (help_cmd_list): Recurse for "help user-defined".
148 * cli/cli-script.c (validate_comname): Rewrite to handle prefix
149 commands. Return the containing command list.
150 (define_command, document_command): Update to handle prefix commands.
151 (show_user_1): Add prefix and name arguments. Handle prefix
152 commands.
153 * cli/cli-script.h (show_user_1): Update prototype.
154
a32d7317
KT
1552009-01-14 Kai Tietz <kai.tietz@onevision.com>
156
157 * mingw-ser.c (console_select_thread): Add return to make
158 compiler happy.
159 (pipe_select_thread): Likewise.
160 (file_select_thread): Likewise.
161
041d0fd7
PA
1622009-01-14 Pedro Alves <pedro@codesourcery.com>
163
164 * mi/mi-main.c (mi_cmd_execute): Clean up parenthesis mess from
165 previous change.
166
dc1981d7
PA
1672009-01-14 Pedro Alves <pedro@codesourcery.com>
168
169 * remote.c (extended_remote_mourn_1): Invalidate our notion of
170 current general thread.
171
244bf9ae
PA
1722009-01-14 Pedro Alves <pedro@codesourcery.com>
173
174 * mi/mi-main.c (mi_cmd_execute): Also allow -list-thread-groups
175 without a live selected thread.
176
e4d013fc
JB
1772009-01-14 Joel Brobecker <brobecker@adacore.com>
178
179 Update the copyright notice of some of the files I missed
180 in the previous copyright update.
181
a588db63
JB
1822009-01-14 Joel Brobecker <brobecker@adacore.com>
183
184 * windows-nat.c (handle_unload_dll): Use %p to print the DLL
185 base address instead of casting it to DWORD.
186
77a732d9
UW
1872009-01-13 Ulrich Weigand <uweigand@de.ibm.com>
188
189 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Do not call get_frame_arch
190 for NULL frame pointers.
191
773698b5
JB
1922009-01-13 Mark Kettenis <kettenis@gnu.org>
193
194 * utils.c (host_address_to_string): Reimplement in a way that
195 avoids the cast of the address to long.
196
9918cab9
JB
1972009-01-13 Joel Brobecker <brobecker@adacore.com>
198
199 * mdebugread.c (parse_symbol): Save the symbol private data
200 using SYMBOL_VALUE_BYTES instead of SYMBOL_VALUE.
201 (psymtab_to_symtab_1): Likewise.
202 (parse_procedure): Declare variable "e" only in the scope
203 where it is used. Extract the symbol private data using
204 SYMBOL_VALUE_BYTES.
205
74bcbdf3
PA
2062009-01-13 Jim Blandy <jimb@codesourcery.com>
207
208 Abstract out common code for copying value locations.
209
210 * value.h (set_value_component_location): New declaration.
211 * value.c (set_value_component_location): New function.
212 (value_primitive_field): Use it.
213 * valarith.c (value_subscript, value_subscripted_rvalue): Same.
214 * valops.c (search_struct_field, value_slice): Same.
215 * ada-lang.c (coerce_unspec_val_to_type)
216 (ada_value_primitive_packed_val): Same.
217
d7dc3873
JB
2182009-01-13 Joel Brobecker <brobecker@adacore.com>
219
220 * MAINTAINERS (GLOBAL MAINTAINERS): Add Tom Tromey.
221
dc05df57
CF
2222009-01-12 Christopher Faylor <me+cygwin@cgf.cx>
223
224 * amd64-windows-nat.c Rename gdb-specific win32_* to windows_*
225 throughout.
226 * i386-cygwin-tdep.c: Ditto.
227 * i386-windows-nat.c: Ditto.
228 * windows-nat.h: Ditto.
229 * windows-tdep.c: Ditto.
230 * windows-tdep.h: Ditto.
231 * windows-nat.c: Ditto.
232 (cygwin_load_start): Redefine as CORE_ADDR.
233 (cygwin_load_end): Ditto.
234 (windows_make_so): Coerce result of address arithmetic to to uintptr_t
235 before coercing to CORE_ADDR to avoid a compiler warning.
236 (handle_exception): Define addr as CORE_ADDR and coerce
237 ExceptionAddress to uintptr_t before assigining to avoid a compiler
238 warning.
239 * config/djgpp/fnchange.lst: Add mappings for recently renamed windows
240 files.
241
31b060a2
CF
2422009-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
243
244 Fix linking with --enable-targets=all:
245 * Makefile.in (ALL_TARGET_OBS): Add windows-tdep.o.
246 (HFILES_NO_SRCDIR): Add windows-tdep.h.
247 (ALLDEPFILES): Add windows-tdep.c.
248
2492009-01-11 Christ Faylor <me.gdb@cgf.cx>
250
251 * win32-nat.h: Delete.
252 * windows-nat.h: Rename from win32-nat.h.
253 * win32-nat.c: Delete.
254 * windows-nat.c: Rename from win32-nat.c.
255 * win32-termcap.c: Delete.
256 * windows-termcap.c: Rename from win32-termcap.c.
257 * amd64-windows-nat.c: Handle rename from win32-nat.h -> windows-nat.h.
258 * configure.ac: Handle rename from win32-termcap.c ->
259 windows-termcap.c.
260 * configure: Regenerate.
261 * gdb_curses.h: Change comment to reflect rename from win32-termcap.c
262 -> windows-termcap.c.
263 * i386-cygwin-tdep.c: Handle rename from win32-tdep.h ->
264 windows-tdep.h.
265 * i386-windows-nat.c: Refect rename from win32-nat.h -> windows-nat.h.
266 * windows-nat.c: Ditto. Also reflect rename from from win32-tdep.h ->
267 windows-tdep.h.
268 (win32_make_so): Handle cygwin compiler warning due to change of
269 load_addr from DWORD to LPVOID.
270 (handle_load_dll): Use %p in format string to properly print address
271 and avoid a compiler warning.
272 (DEBUG_EXCEPTION_SIMPLE): Ditto.
273 (handle_exception): Ditto.
274 * windows-tdep.c: Handle rename from win32-tdep.h -> windows-tdep.h.
275 * config/i386/cygwin.mh: Handle rename from win32-nat.o ->
276 windows-nat.o.
277 * config/i386/mingw.mh: Ditto.
278 * config/i386/mingw64.mh: Ditto.
279
0311118f
JK
2802009-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
281
282 * f-typeprint.c (f_type_print_varspec_suffix): Convert the autovariable
283 arrayprint_recurse_level to a parameter. Update all the callers. New
284 comment at autovariables.
285
5f61c20e
JK
2862009-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
287
288 * gdbtypes.c (make_qualified_type, replace_type): Reformat to the GNU
289 coding style.
290
2912009-01-11 Joel Brobecker <brobecker@adacore.com>
53b71562
JB
292
293 * target.c (target_xfer_partial): Use host_address_to_string to
294 print the address of readbuf and writebuf. Cast the address of
295 elements inside the myaddr buffer into intptr_t.
296 (deprecated_debug_xfer_memory): Use paddress to print memaddr.
297 Cast the address of elements inside the myaddr buffer into
298 intptr_t.
299
5f61c20e 3002009-01-11 Joel Brobecker <brobecker@adacore.com>
d0761299
JB
301
302 * amd64-windows-nat.c, amd64-windows-tdep.c: New files.
303 * config/i386/mingw64.mh, config/i386/nm-cygwin64.h: New files.
304 * configure.host, configure.tgt: Add handling for x86_64/windows.
305 * config/djgpp/fnchange.lst: Add entries for amd64-windows-nat.c
306 and amd64-windows-tdep.c.
307
5f61c20e 3082009-01-11 Joel Brobecker <brobecker@adacore.com>
bfb87e33
JB
309
310 * win32-tdep.h, win32-tdep.c: New files.
311 * i386-cygwin-tdep.h: Delete.
312 * i386-cygwin-tdep.c: Include win32-tdep.h instead of
313 i386-cygwin-tdep.h.
314 (win32_xfer_shared_library): Delete. Moved to win32-tdep.c.
315 * win32-nat.c: Likewise.
316 * configure.tgt: Add win32-tdep.o to the list of target object
317 files for i386-cygwin and i386-mingw targets.
318
5f61c20e 3192009-01-11 Joel Brobecker <brobecker@adacore.com>
7e63b4e4
JB
320
321 * win32-nat.h: New file.
322 * win32-nat.c (mappings): Initialize to NULL.
323 (win32_set_context_register_offsets): New function.
324 * i386-windows-nat.c: New file.
325 (mappings): Moved here from win32-nat.c.
326 (_initialize_i386_windows_nat): New function.
327 * config/i386/mingw.mh (NATDEPFILES): Add i386-windows-nat.o.
328 * config/i386/cygwin.mh (NATDEPFILES): Likewise.
329
25fc6591
AS
3302009-01-09 Andreas Schwab <schwab@suse.de>
331
332 * Makefile.in (init.c): Set LANG/LC_ALL to C, not c.
333
87f70781
PA
3342009-01-09 Daniel Jacobowitz <dan@codesourcery.com>
335
336 * gdbtypes.c (append_composite_type_field): Correct the location of
337 appended fields.
338
58d4abe1
PA
3392009-01-09 Pedro Alves <pedro@codesourcery.com>
340
341 * defs.h (deprecated_error_hook): Delete declaration.
342 * interps.c (clear_interpreter_hooks): Adjust.
343 * remote-sim.c (gdb_os_error): Don't try to call
344 deprecated_error_hook. No need to call exit anymore.
345 * top.c (deprecated_error_hook): Delete.
346
e3cb3832
JB
3472009-01-09 Joel Brobecker <brobecker@adacore.com>
348
349 * arch-utils.c (gdbarch_update_p): Use host_address_to_string
350 to print the address of the gdbarch pointer.
351
30737ed9
JB
3522009-01-09 Joel Brobecker <brobecker@adacore.com>
353
354 * gdbarch.sh: Fix all the compilation errors on amd64-windows
355 due to casting a pointer to a long when printing a function
356 address. Instead, use host_address_to_string to convert our
357 address to a string.
358 * gdbarch.c: Regenerate.
359
ec4dfccf
JB
3602009-01-09 Joel Brobecker <brobecker@adacore.com>
361
362 * event-top.c (async_disconnect, async_stop_sig): use "raise"
363 instead of "kill" to raise a signal.
364
d3653bf6
JB
3652009-01-09 Joel Brobecker <brobecker@adacore.com>
366
367 * win32-nat.c (get_module_name): Change the type of parameter
368 "base_address" to LPVOID. Remove unnecessary cast.
369 (struct lm_info): Change type of load_addr to LPVOID.
370 (win32_make_so): Change the type of parameter "load_addr"
371 to LPVOID. Remove some unnecessary casts.
372 (handle_unload_dll): Change the type of "lpBaseOfDll" to LPVOID.
373 (win32_xfer_shared_libraries): Add missing cast.
374
308a8808
JB
3752009-01-09 Joel Brobecker <brobecker@adacore.com>
376
377 * win32-nat.c (has_detach_ability, set_process_privilege):
378 Cast the result of GetProcAddress to (void *) to avoid
379 a compilation warning.
380
5851ab76
JB
3812009-01-09 Joel Brobecker <brobecker@adacore.com>
382
383 * win32-nat.c (CONTEXT_EXTENDED_REGISTERS): Define to 0 if not
384 already defined.
385
5732a500
JB
3862009-01-09 Joel Brobecker <brobecker@adacore.com>
387
388 * win32-nat.c (get_image_name, win32_xfer_memory): Fix type
389 definition of local variable "done".
390 (info_w32_command, handle_exception): Remove unnecessary cast.
391
def4de3a
JB
3922009-01-09 Joel Brobecker <brobecker@adacore.com>
393
394 * win32-nat.c (kernel32_DebugSetProcessKillOnExit): Renames
395 DebugSetProcessKillOnExit. Update all uses in this file.
396 (kernel32_DebugActiveProcessStop): Renames DebugActiveProcessStop.
397 Update all uses in this file.
398
3992009-01-09 Joel Brobecker <brobecker@adacore.com>
0795be10
JB
400
401 * win32-nat.c (do_initial_win32_stuff): Add new ops parameter,
402 and use it when pushing the target.
403 (win32_attach, win32_create_inferior): Update call to
404 do_initial_win32_stuff.
405 (win32_detach, win32_mourn_inferior): Use our ops parameter
406 instead of the global win32_ops to unpush the target.
407
1be7fe8d
JB
4082009-01-09 Joel Brobecker <brobecker@adacore.com>
409
410 * ser-mingw.c (ser_windows_open): Use proper type when casting
411 in call to _open_osfhandle.
412
1dac1b47
KT
4132009-01-09 Kai Tietz <kai.tietz@onevision.com>
414
415 * coff-pe-read.c (read_pe_exported_syms): Fix typo.
416
ecf180db
JB
4172009-01-09 Joel Brobecker <brobecker@adacore.com>
418
419 * CONTRIBUTE: Minor reformatting.
420
8234eceb
KT
4212009-01-08 Kai Tietz <kai.tietz@onevision.com>
422
423 * MAINTAINERS: Add myself to Write After Approval.
a68ddad5
KT
424 * coff-pe-read.c (read_pe_exported_syms): Enable read of PE+
425 export directory.
8234eceb 426
72ee8797
NF
4272009-01-08 Nathan Froyd <froydnj@codesourcery.com>
428
429 * remote-sim.c (gdb_os_error): Mark as a noreturn function.
430 Call exit to make it obvious to GCC.
431
f7545552
TT
4322009-01-08 Tom Tromey <tromey@redhat.com>
433
434 PR breakpoints/9350:
435 * varobj.c (varobj_invalidate): Unconditionally free
436 all_rootvarobj.
437 * symfile.c (syms_from_objfile): Free local_addr when returning
438 normally.
439 * exec.c (exec_file_attach): Do cleanups before returning.
440 (exec_file_command): Likewise.
441 * corefile.c (reopen_exec_file): Do cleanups before returning.
442 * breakpoint.c (insert_breakpoint_locations): Do cleanups before
443 returning.
444 (do_vec_free): New function.
445 (update_global_location_list): Make a cleanup for old_locations.
446 Do cleanups before returning. Remove unused variable 'e'.
447 (find_condition_and_thread): Free result of parsing the
448 expression.
449 (print_it_typical): Do cleanups before returning.
450 (breakpoint_re_set_one): Always free sals.sals.
451
dde02812
ES
4522009-01-08 Joel Brobecker <brobecker@adacore.com>
453 Emi Suzuki <emi-suzuki@tjsys.co.jp>
454
455 * breakpoint.c (do_enable_breakpoint): Use update_watchpoint for
456 watchpoints.
457
69bcc6bc
DE
4582009-01-07 Doug Evans <dje@google.com>
459
460 * top.c (gdb_prompt_string): Delete, unused.
461
fa3a767f
PA
4622009-01-07 Pedro Alves <pedro@codesourcery.com>
463
464 Delete ONE_PROCESS_WRITETEXT leftovers.
465
466 * breakpoint.c (insert_bp_location): Delete process_warning
467 argument. Adjust.
468 (insert_breakpoint_locations): Adjust.
469 (reattach_breakpoints): Adjust.
470 * infrun.c (normal_stop): Drop "It might be running in another
471 process" notice.
472
7b93f36d
SS
4732009-01-07 Stan Shebs <stan@codesourcery.com>
474
475 * config/pa/linux.mh (XDEPFILES): Remove.
476
0380c18b
DE
4772009-01-07 Doug Evans <dje@google.com>
478
479 * cli/cli-cmds.c (set_debug): Fix cut-n-paste error.
480
60023297
JK
4812009-01-07 Jan Kratochvil <jan.kratochvil@redhat.com>
482
483 * f-typeprint.c (f_type_print_base <TYPE_CODE_STRUCT>): Fix output
484 spacing, a regression from 2008-04-22.
485
ea8992ce
JB
4862009-01-07 Joel Brobecker <brobecker@adacore.com>
487
488 * utils.c (gdb_print_host_address): Adjust implementation to
489 reuse host_address_to_string. Move comment explaining the conversion
490 from host address to string from here...
491 (host_address_to_string): ... to there.
492
301d2c47
ES
4932009-01-07 Emi Suzuki <emi-suzuki@tjsys.co.jp>
494
495 * MAINTAINERS: Add myself for write after approval privileges.
496
170ce852
TT
4972009-01-06 Tom Tromey <tromey@redhat.com>
498
499 * value.c (set_internalvar): Use value_free, not xfree.
500
fdb7262a
JB
5012009-01-06 Jim Blandy <jimb@red-bean.com>
502
bf1d7d9c
JB
503 Check return values of functions declared with warn_unused_result
504 attribute in GLIBC 2.8.
505 * cli/cli-cmds.c (pwd_command): Check return value from getcwd.
506 * inflow.c (check_syscall): New function.
507 (new_tty): Use check_syscall to check return values from open and dup.
508 * linux-nat.c (linux_nat_info_proc_cmd): Check return value from fgets.
509 * main.c (captured_main): Call cwd after setting up gdb_stderr;
510 check for errors from getcwd.
511 * mi/mi-cmd-env.c (mi_cmd_env_pwd): Check return value from getcwd.
512 * ui-file.c (stdio_file_write): Ignore return value from fwrite.
513 (stdio_file_fputs): Same.
514 * utils.c (internal_vproblem): abort if last-ditch error message
515 write fails.
516
fdb7262a
JB
517 * top.c (gdb_init): Don't set the current directory here; that's
518 already been done in captured_main.
519
84603566
SL
5202009-01-06 Sandra Loosemore <sandra@codesourcery.com>
521
522 * ser-tcp.c: Adjust includes.
523 (tcp_set_cmdlist, tcp_show_cmdlist): Declare.
524 (tcp_auto_retry, tcp_retry_limit): Declare.
525 (TIMEOUT): Remove, in favor of tcp_retry_limit.
526 (POLL_INTERVAL): Increase to 5, in favor of backoff logic.
527 (wait_for_connect): New function.
528 (net_open): Use it. Add auto-retry logic.
529 (set_tcp_cmd, show_tcp_cmd): New functions.
530 (_initialize_ser_tcp): Initialize new "set/show tcp auto-retry"
531 and "set/show tcp connect-timeout" commands.
532 * NEWS: Document new commands.
533
5171e6b3
TT
5342009-01-05 Tom Tromey <tromey@redhat.com>
535
536 * python/python-internal.h (Py_ssize_t): Define as int.
537
a367a1f2
JB
5382009-01-05 Jim Blandy <jimb@red-bean.com>
539
540 * MAINTAINERS: Fix my e-mail address as steering committee member.
541
0fb0cc75
JB
5422009-01-03 Joel Brobecker <brobecker@adacore.com>
543
544 Updated copyright notices for most files.
545
c9fc347d
JB
5462009-01-03 Joel Brobecker <brobecker@adacore.com>
547
548 * top.c (print_gdb_version): Update copyright year.
549
a85d99b4
JB
5502009-01-03 Joel Brobecker <brobecker@adacore.com>
551
552 * config/djgpp/fnchange.lst: Add entry for ChangeLog-2008.
553
4d78a120
JB
5542009-01-01 Pedro Alves <pedro@codesourcery.com>
555
556 PR breakpoints/9681:
557 * exceptions.h (enum errors): New error type, MEMORY_ERROR.
558 * corefile.c (memory_error): Rewrite to throw a MEMORY_ERROR.
559 * breakpoint.c (fetch_watchpoint_value): Ignore MEMORY_ERRORs, but
560 retrow all other exceptions.
561
67de2a4c 562For older changes see ChangeLog-2008.
c906108c
SS
563\f
564Local Variables:
565mode: change-log
566left-margin: 8
567fill-column: 74
568version-control: never
57da7796 569coding: utf-8
c906108c 570End:
This page took 0.987567 seconds and 4 git commands to generate.