* win32-nat.c (do_initial_win32_stuff): Add new ops parameter,
[deliverable/binutils-gdb.git] / gdb / ChangeLog
... / ...
CommitLineData
12009-01-07 Joel Brobecker <brobecker@adacore.com>
2
3 * win32-nat.c (do_initial_win32_stuff): Add new ops parameter,
4 and use it when pushing the target.
5 (win32_attach, win32_create_inferior): Update call to
6 do_initial_win32_stuff.
7 (win32_detach, win32_mourn_inferior): Use our ops parameter
8 instead of the global win32_ops to unpush the target.
9
102009-01-09 Joel Brobecker <brobecker@adacore.com>
11
12 * ser-mingw.c (ser_windows_open): Use proper type when casting
13 in call to _open_osfhandle.
14
152009-01-09 Kai Tietz <kai.tietz@onevision.com>
16
17 * coff-pe-read.c (read_pe_exported_syms): Fix typo.
18
192009-01-09 Joel Brobecker <brobecker@adacore.com>
20
21 * CONTRIBUTE: Minor reformatting.
22
232009-01-08 Kai Tietz <kai.tietz@onevision.com>
24
25 * MAINTAINERS: Add myself to Write After Approval.
26 * coff-pe-read.c (read_pe_exported_syms): Enable read of PE+
27 export directory.
28
292009-01-08 Nathan Froyd <froydnj@codesourcery.com>
30
31 * remote-sim.c (gdb_os_error): Mark as a noreturn function.
32 Call exit to make it obvious to GCC.
33
342009-01-08 Tom Tromey <tromey@redhat.com>
35
36 PR breakpoints/9350:
37 * varobj.c (varobj_invalidate): Unconditionally free
38 all_rootvarobj.
39 * symfile.c (syms_from_objfile): Free local_addr when returning
40 normally.
41 * exec.c (exec_file_attach): Do cleanups before returning.
42 (exec_file_command): Likewise.
43 * corefile.c (reopen_exec_file): Do cleanups before returning.
44 * breakpoint.c (insert_breakpoint_locations): Do cleanups before
45 returning.
46 (do_vec_free): New function.
47 (update_global_location_list): Make a cleanup for old_locations.
48 Do cleanups before returning. Remove unused variable 'e'.
49 (find_condition_and_thread): Free result of parsing the
50 expression.
51 (print_it_typical): Do cleanups before returning.
52 (breakpoint_re_set_one): Always free sals.sals.
53
542009-01-08 Joel Brobecker <brobecker@adacore.com>
55 Emi Suzuki <emi-suzuki@tjsys.co.jp>
56
57 * breakpoint.c (do_enable_breakpoint): Use update_watchpoint for
58 watchpoints.
59
602009-01-07 Doug Evans <dje@google.com>
61
62 * top.c (gdb_prompt_string): Delete, unused.
63
642009-01-07 Pedro Alves <pedro@codesourcery.com>
65
66 Delete ONE_PROCESS_WRITETEXT leftovers.
67
68 * breakpoint.c (insert_bp_location): Delete process_warning
69 argument. Adjust.
70 (insert_breakpoint_locations): Adjust.
71 (reattach_breakpoints): Adjust.
72 * infrun.c (normal_stop): Drop "It might be running in another
73 process" notice.
74
752009-01-07 Stan Shebs <stan@codesourcery.com>
76
77 * config/pa/linux.mh (XDEPFILES): Remove.
78
792009-01-07 Doug Evans <dje@google.com>
80
81 * cli/cli-cmds.c (set_debug): Fix cut-n-paste error.
82
832009-01-07 Jan Kratochvil <jan.kratochvil@redhat.com>
84
85 * f-typeprint.c (f_type_print_base <TYPE_CODE_STRUCT>): Fix output
86 spacing, a regression from 2008-04-22.
87
882009-01-07 Joel Brobecker <brobecker@adacore.com>
89
90 * utils.c (gdb_print_host_address): Adjust implementation to
91 reuse host_address_to_string. Move comment explaining the conversion
92 from host address to string from here...
93 (host_address_to_string): ... to there.
94
952009-01-07 Emi Suzuki <emi-suzuki@tjsys.co.jp>
96
97 * MAINTAINERS: Add myself for write after approval privileges.
98
992009-01-06 Tom Tromey <tromey@redhat.com>
100
101 * value.c (set_internalvar): Use value_free, not xfree.
102
1032009-01-06 Jim Blandy <jimb@red-bean.com>
104
105 Check return values of functions declared with warn_unused_result
106 attribute in GLIBC 2.8.
107 * cli/cli-cmds.c (pwd_command): Check return value from getcwd.
108 * inflow.c (check_syscall): New function.
109 (new_tty): Use check_syscall to check return values from open and dup.
110 * linux-nat.c (linux_nat_info_proc_cmd): Check return value from fgets.
111 * main.c (captured_main): Call cwd after setting up gdb_stderr;
112 check for errors from getcwd.
113 * mi/mi-cmd-env.c (mi_cmd_env_pwd): Check return value from getcwd.
114 * ui-file.c (stdio_file_write): Ignore return value from fwrite.
115 (stdio_file_fputs): Same.
116 * utils.c (internal_vproblem): abort if last-ditch error message
117 write fails.
118
119 * top.c (gdb_init): Don't set the current directory here; that's
120 already been done in captured_main.
121
1222009-01-06 Sandra Loosemore <sandra@codesourcery.com>
123
124 * ser-tcp.c: Adjust includes.
125 (tcp_set_cmdlist, tcp_show_cmdlist): Declare.
126 (tcp_auto_retry, tcp_retry_limit): Declare.
127 (TIMEOUT): Remove, in favor of tcp_retry_limit.
128 (POLL_INTERVAL): Increase to 5, in favor of backoff logic.
129 (wait_for_connect): New function.
130 (net_open): Use it. Add auto-retry logic.
131 (set_tcp_cmd, show_tcp_cmd): New functions.
132 (_initialize_ser_tcp): Initialize new "set/show tcp auto-retry"
133 and "set/show tcp connect-timeout" commands.
134 * NEWS: Document new commands.
135
1362009-01-05 Tom Tromey <tromey@redhat.com>
137
138 * python/python-internal.h (Py_ssize_t): Define as int.
139
1402009-01-05 Jim Blandy <jimb@red-bean.com>
141
142 * MAINTAINERS: Fix my e-mail address as steering committee member.
143
1442009-01-03 Joel Brobecker <brobecker@adacore.com>
145
146 Updated copyright notices for most files.
147
1482009-01-03 Joel Brobecker <brobecker@adacore.com>
149
150 * top.c (print_gdb_version): Update copyright year.
151
1522009-01-03 Joel Brobecker <brobecker@adacore.com>
153
154 * config/djgpp/fnchange.lst: Add entry for ChangeLog-2008.
155
1562009-01-01 Pedro Alves <pedro@codesourcery.com>
157
158 PR breakpoints/9681:
159 * exceptions.h (enum errors): New error type, MEMORY_ERROR.
160 * corefile.c (memory_error): Rewrite to throw a MEMORY_ERROR.
161 * breakpoint.c (fetch_watchpoint_value): Ignore MEMORY_ERRORs, but
162 retrow all other exceptions.
163
164For older changes see ChangeLog-2008.
165\f
166Local Variables:
167mode: change-log
168left-margin: 8
169fill-column: 74
170version-control: never
171coding: utf-8
172End:
This page took 0.025025 seconds and 4 git commands to generate.