2011-01-11 Michael Snyder <msnyder@vmware.com>
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2011-01-11 Michael Snyder <msnyder@vmware.com>
2
3 * s390-tdep.c: Comment cleanup, mostly periods and spaces.
4 * score-tdep.c: Ditto.
5 * score-tdep.h: Ditto.
6 * ser-base.c: Ditto.
7 * ser-go32.c: Ditto.
8 * serial.c: Ditto.
9 * serial.h: Ditto.
10 * ser-mingw.c: Ditto.
11 * ser-pipe.c: Ditto.
12 * ser-tcp.c: Ditto.
13 * ser-unix.c: Ditto.
14 * sh64-tdep.c: Ditto.
15 * shnbsd-nat.c: Ditto.
16 * sh-tdep.c: Ditto.
17 * sh-tdep.h: Ditto.
18 * solib.c: Ditto.
19 * solib-darwin.c: Ditto.
20 * solib-frv.c: Ditto.
21 * solib.h: Ditto.
22 * solib-irix.c: Ditto.
23 * solib-osf.c: Ditto.
24 * solib-pa64.c: Ditto.
25 * solib-som.c: Ditto.
26 * solib-spu.c: Ditto.
27 * solib-sunos.c: Ditto.
28 * solib-svr4.c: Ditto.
29 * solist.h: Ditto.
30 * sol-thread.c: Ditto.
31 * somread.c: Ditto.
32 * source.c: Ditto.
33 * source.h: Ditto.
34 * sparc64-linux-tdep.c: Ditto.
35 * sparc64-tdep.c: Ditto.
36 * sparc-linux-nat.c: Ditto.
37 * sparc-linux-tdep.c: Ditto.
38 * sparc-sol2-nat.c: Ditto.
39 * sparc-sol2-tdep.c: Ditto.
40 * sparc-tdep.c: Ditto.
41 * sparc-tdep.h: Ditto.
42 * spu-tdep.c: Ditto.
43 * stabsread.c: Ditto.
44 * stabsread.h: Ditto.
45 * stack.c: Ditto.
46 * symfile.c: Ditto.
47 * symfile.h: Ditto.
48 * symmisc.c: Ditto.
49 * symtab.c: Ditto.
50 * symtab.h: Ditto.
51 * target.c: Ditto.
52 * target-descriptions.c: Ditto.
53 * target-descriptions.h: Ditto.
54 * target.h: Ditto.
55 * target-memory.c: Ditto.
56 * terminal.h: Ditto.
57 * thread.c: Ditto.
58 * top.c: Ditto.
59 * tracepoint.c: Ditto.
60 * tracepoint.h: Ditto.
61 * trad-frame.h: Ditto.
62 * typeprint.c: Ditto.
63
64 2011-01-11 Thiago Jung Bauermann <bauerman@br.ibm.com>
65
66 * breakpoint.c (resources_needed_watchpoint): Fix indentation.
67 * gdbtypes.c (is_scalar_type_recursive): Fix formatting.
68
69 2011-01-11 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
70 Thiago Jung Bauermann <bauerman@br.ibm.com>
71
72 Implement support for PowerPC BookE ranged watchpoints.
73 * breakpoint.h
74 (struct breakpoint_ops) <resources_needed>: New method.
75 Initialize to NULL in all existing breakpoint_ops instances.
76 (struct breakpoint) <exact>: New field.
77 (target_exact_watchpoints): Declare external global.
78 * breakpoint.c (target_exact_watchpoints): New global flag.
79 (update_watchpoint): Set b->type to bp_hardware_watchpoint and
80 b->enable_state to bp_enabled before calling
81 hw_watchpoint_used_count.
82 (hw_watchpoint_used_count): Iterate over all bp_locations in a
83 watchpoint. Call breakpoint's breakpoint_ops.resources_needed
84 if available.
85 (insert_watchpoint, remove_watchpoint): Use fixed length of 1 byte
86 if the watchpoint is exact.
87 (resources_needed_watchpoint): New function.
88 (watchpoint_breakpoint_ops): Add resources_needed_watchpoint.
89 (watch_command_1): Set b->exact if the user asked for an exact
90 watchpoint and one can be set.
91 (can_use_hardware_watchpoint): Add exact_watchpoints argument.
92 Pass fixed length of 1 to target_region_ok_for_hw_watchpoint if
93 the user asks for an exact watchpoint and one can be set. Return
94 number of needed debug registers to watch the expression.
95 * gdbtypes.c (is_scalar_type): New function, based on
96 valprint.c:scalar_type_p.
97 (is_scalar_type_recursive): New function.
98 * gdbtypes.h (is_scalar_type_recursive): Declare.
99 * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint): Always
100 handle regions when ranged watchpoints are available.
101 (create_watchpoint_request): New function.
102 (ppc_linux_insert_watchpoint, ppc_linux_remove_watchpoint): Use
103 create_watchpoint_request.
104 * rs6000-tdep.c (show_powerpc_exact_watchpoints): New function.
105 (_initialize_rs6000_tdep): Add `exact-watchpoints' boolean to the
106 `set powerpc' and `show powerpc' commands.
107 * target.h (struct target_ops) <to_region_ok_for_hw_watchpoint>:
108 Mention documentation comment in the target macro.
109 (target_region_ok_for_hw_watchpoint): Document return value.
110
111 2011-01-11 Thiago Jung Bauermann <bauerman@br.ibm.com>
112
113 * breakpoint.c (update_watchpoint): Decide on using a software or
114 hardware watchpoint after the bp_locations are created.
115
116 2010-01-11 Thiago Jung Bauermann <bauerman@br.ibm.com>
117
118 Convert hardware watchpoints to use breakpoint_ops.
119 * breakpoint.h (breakpoint_ops) <insert>: Rename to...
120 <insert_location>: ... this. Return int instead of void.
121 Accept pointer to struct bp_location instead of pointer to
122 struct breakpoint. Adapt all implementations.
123 (breakpoint_ops) <remove>: Rename to...
124 <remove_location>: ... this. Accept pointer to struct bp_location
125 instead of pointer to struct breakpoint. Adapt all implementations.
126 * breakpoint.c (insert_catchpoint): Delete function.
127 (insert_bp_location): Call the watchpoint or catchpoint's
128 breakpoint_ops.insert method.
129 (remove_breakpoint_1): Call the watchpoint or catchpoint's
130 breakpoint_ops.remove method.
131 (insert_watchpoint, remove_watchpoint): New functions.
132 (watchpoint_breakpoint_ops): New structure.
133 (watch_command_1): Initialize the OPS field.
134 * inf-child.c (inf_child_insert_fork_catchpoint)
135 (inf_child_remove_fork_catchpoint, inf_child_insert_vfork_catchpoint)
136 (inf_child_remove_vfork_catchpoint, inf_child_insert_exec_catchpoint)
137 (inf_child_remove_exec_catchpoint, inf_child_set_syscall_catchpoint):
138 Delete functions.
139 (inf_child_target): Remove initialization of to_insert_fork_catchpoint,
140 to_remove_fork_catchpoint, to_insert_vfork_catchpoint,
141 to_remove_vfork_catchpoint, to_insert_exec_catchpoint,
142 to_remove_exec_catchpoint and to_set_syscall_catchpoint.
143 * target.c (update_current_target): Change default implementation of
144 to_insert_fork_catchpoint, to_remove_fork_catchpoint,
145 to_insert_vfork_catchpoint, to_remove_vfork_catchpoint,
146 to_insert_exec_catchpoint, to_remove_exec_catchpoint and
147 to_set_syscall_catchpoint to return_one.
148 (debug_to_insert_fork_catchpoint, debug_to_insert_vfork_catchpoint)
149 (debug_to_insert_exec_catchpoint): Report return value.
150 * target.h (to_insert_fork_catchpoint, to_insert_vfork_catchpoint)
151 (to_insert_exec_catchpoint): Change declaration to return int instead
152 of void.
153
154 2011-01-11 Michael Snyder <msnyder@vmware.com>
155
156 * arm-tdep.c: Internationalization.
157 * c-lang.c: Ditto.
158 * charset.c: Ditto.
159 * fork-child.c: Ditto.
160 * nto-procfs.c: Ditto.
161 * ppc-sysv-tdep.c: Ditto.
162 * procfs.c: Ditto.
163 * remote-mips.c: Ditto.
164 * remote.c: Ditto.
165 * rs6000-nat.c: Ditto.
166 * rs6000-tdep.c: Ditto.
167 * target.c: Ditto.
168 * valops.c: Ditto.
169 * value.c: Ditto.
170 * xml-support.c: Ditto.
171 * mi/mi-cmd-break.c: Ditto.
172 * mi/mi-cmd-var.c: Ditto.
173 * mi/mi-interp.c: Ditto.
174 * mi/mi-main.c: Ditto.
175
176 2011-01-11 Andrew Burgess <aburgess@broadcom.com>
177
178 * remote-sim.c (gdbsim_store_register): Update API to
179 sim_store_register to check more error conditions.
180
181 2011-01-10 Michael Snyder <msnyder@vmware.com>
182
183 * nto-procfs.c: Comment cleanup, mostly periods and spaces.
184 * nto-tdep.c: Ditto.
185 * nto-tdep.h: Ditto.
186 * objc-exp.y: Ditto.
187 * objc-lang.c: Ditto.
188 * objfiles.c: Ditto.
189 * objfiles.h: Ditto.
190 * observer.c: Ditto.
191 * opencl-lang.c: Ditto.
192 * osabi.c: Ditto.
193 * parse.c: Ditto.
194 * parser-defs.h: Ditto.
195 * p-exp.y: Ditto.
196 * p-lang.c: Ditto.
197 * posix-hdep.c: Ditto.
198 * ppcbug-rom.c: Ditto.
199 * ppc-linux-nat.c: Ditto.
200 * ppc-linux-tdep.c: Ditto.
201 * ppc-linux-tdep.h: Ditto.
202 * ppcnbsd-tdep.c: Ditto.
203 * ppcobsd-tdep.c: Ditto.
204 * ppcobsd-tdep.h: Ditto.
205 * ppc-sysv-tdep.c: Ditto.
206 * ppc-tdep.h: Ditto.
207 * printcmd.c: Ditto.
208 * proc-abi.c: Ditto.
209 * proc-flags.c: Ditto.
210 * procfs.c: Ditto.
211 * proc-utils.h: Ditto.
212 * progspace.h: Ditto.
213 * prologue-value.c: Ditto.
214 * prologue-value.h: Ditto.
215 * psympriv.h: Ditto.
216 * psymtab.c: Ditto.
217 * p-typeprint.c: Ditto.
218 * p-valprint.c: Ditto.
219 * ravenscar-sparc-thread.c: Ditto.
220 * ravenscar-thread.c: Ditto.
221 * ravenscar-thread.h: Ditto.
222 * record.c: Ditto.
223 * regcache.c: Ditto.
224 * regcache.h: Ditto.
225 * remote.c: Ditto.
226 * remote-fileio.c: Ditto.
227 * remote-fileio.h: Ditto.
228 * remote.h: Ditto.
229 * remote-m32r-sdi.c: Ditto.
230 * remote-mips.c: Ditto.
231 * remote-sim.c: Ditto.
232 * rs6000-aix-tdep.c: Ditto.
233 * rs6000-nat.c: Ditto.
234 * rs6000-tdep.c: Ditto.
235
236 2011-01-10 Michael Snyder <msnyder@vmware.com>
237
238 * charset.c (validate): Internationalization.
239 * coffread.c (read_one_sym): Ditto.
240 * dwarf2read.c (dwarf2_attach_fields_to_type): Ditto.
241 * h8300-tdep.c (H8300_extract_return_value): Ditto.
242 * inflow.c (new_tty): Ditto.
243 * iq2000-tdep.c (iq2000_breakpoint_from_pc): Ditto.
244 * m32c-tdep.c (m32c_return_value): Ditto.
245 * mep-tdep.c (mep_store_return_value): Ditto.
246 * score-tdep.c (score7_fetch_insn): Ditto.
247 * ser-mingw.c (pipe_windows_open): Ditto.
248 * sh64-tdep.c (sh64_extract_return_value): Ditto.
249 * spu-tdep.c (spu_register_type): Ditto.
250 * tracepoint.c (trace_find_command): Ditto.
251 * valarith.c (value_pos): Ditto.
252
253 2011-01-10 Joel Brobecker <brobecker@adacore.com>
254
255 * ada-valprint.c (printstr): Minor comment reformatting.
256
257 2011-01-08 Michael Snyder <msnyder@vmware.com>
258
259 * m32r-rom.c (m32r_upload_command): Fix up ARI warnings for _
260 markup.
261
262 2011-01-08 Michael Snyder <msnyder@vmware.com>
263
264 * h8300-tdep.c: Comment cleanup, mostly periods and spaces.
265 * hppa-hpux-tdep.c: Ditto.
266 * hppa-linux-nat.c: Ditto.
267 * hppa-linux-tdep.c: Ditto.
268 * hppanbsd-tdep.c: Ditto.
269 * hppa-tdep.c: Ditto.
270 * hppa-tdep.h: Ditto.
271 * hpux-thread.c: Ditto.
272 * i386-cygwin-tdep.c: Ditto.
273 * i386-darwin-nat.c: Ditto.
274 * i386gnu-nat.c: Ditto.
275 * i386-linux-nat.c: Ditto.
276 * i386-linux-tdep.c: Ditto.
277 * i386-nat.c: Ditto.
278 * i386-nat.h: Ditto.
279 * i386nbsd-tdep.c: Ditto.
280 * i386-sol2-nat.c: Ditto.
281 * i386-stub.c: Ditto.
282 * i386-tdep.c: Ditto.
283 * i386-tdep.h: Ditto.
284 * i387-tdep.c: Ditto.
285 * ia64-linux-nat.c: Ditto.
286 * ia64-linux-tdep.c: Ditto.
287 * ia64-tdep.c: Ditto.
288 * infcall.c: Ditto.
289 * infcall.h: Ditto.
290 * infcmd.c: Ditto.
291 * inferior.c: Ditto.
292 * inferior.h: Ditto.
293 * infloop.c: Ditto.
294 * inflow.c: Ditto.
295 * infrun.c: Ditto.
296 * interps.c: Ditto.
297 * interps.h: Ditto.
298 * iq2000-tdep.c: Ditto.
299 * irix5-nat.c: Ditto.
300 * jit.c: Ditto.
301 * jit.h: Ditto.
302 * jv-exp.y: Ditto.
303 * jv-lang.c: Ditto.
304 * jv-lang.h: Ditto.
305 * jv-typeprint.c: Ditto.
306 * jv-valprint.c: Ditto.
307 * language.c: Ditto.
308 * language.h: Ditto.
309 * linespec.c: Ditto.
310 * linux-fork.c: Ditto.
311 * linux-nat.c: Ditto.
312 * linux-thread-db.c: Ditto.
313 * lm32-tdep.c: Ditto.
314
315 2011-01-08 Michael Snyder <msnyder@vmware.com>
316
317 * m2-exp.y: Comment cleanup, mostly periods and spaces.
318 * m2-lang.c: Ditto.
319 * m2-typeprint.c: Ditto.
320 * m2-valprint.c: Ditto.
321 * m32c-tdep.c: Ditto.
322 * m32r-linux-nat.c: Ditto.
323 * m32r-rom.c: Ditto.
324 * m32r-tdep.c: Ditto.
325 * m32r-tdep.h: Ditto.
326 * m68hc11-tdep.c: Ditto.
327 * m58klinux-nat.c: Ditto.
328 * m68k-tdep.c: Ditto.
329 * m88k-tdep.c: Ditto.
330 * m88k-tdep.h: Ditto.
331 * machoread.c: Ditto.
332 * macrocmd.c: Ditto.
333 * macroexp.c: Ditto.
334 * macrotab.c: Ditto.
335 * main.c: Ditto.
336 * maint.c: Ditto.
337 * mdebugread.c: Ditto.
338 * mdebugread.h: Ditto.
339 * memattr.c: Ditto.
340 * memattr.h: Ditto.
341 * memory-map.h: Ditto.
342 * mep-tdep.c: Ditto.
343 * microblaze-rom.c: Ditto.
344 * microblaze-tdep.c: Ditto.
345 * minsyms.c: Ditto.
346 * mips-irix-tdep.c: Ditto.
347 * mips-linux-nat.c: Ditto.
348 * mips-linux-tdep.c: Ditto.
349 * mips-linux-tdep.h: Ditto.
350 * mipsnbsd-nat.c: Ditto.
351 * mipsnbsd-tdep.c: Ditto.
352 * mipsread.c: Ditto.
353 * mips-tdep.c: Ditto.
354 * mips-tdep.h: Ditto.
355 * mn10300-linux-tdep.c: Ditto.
356 * mn10300-tdep.c: Ditto.
357 * mn10300-tdep.h: Ditto.
358 * monitor.c: Ditto.
359 * monitor.h: Ditto.
360 * moxie-tdep.c: Ditto.
361 * moxie-tdep.h: Ditto.
362 * mt-tdep.c: Ditto.
363
364 2011-01-08 Mike Frysinger <vapier@gentoo.org>
365
366 * bfin-tdep.h (BFIN_A0_DOT_W_REGNUM): Fix typo in name.
367
368 2011-01-08 Robert Millan <rmh@gnu.org>
369
370 * fbsd-nat.c (fbsd_find_memory_regions): Fix typo.
371
372 2011-01-07 Michael Snyder <msnyder@vmware.com>
373
374 * charset.c (_initialize_charset): Fix typo in string.
375
376 2011-01-07 Michael Snyder <msnyder@vmware.com>
377
378 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Mark up error message
379 for i18n.
380 * tui/tui-layout.c (tui_set_layout_for_display_command):
381 Split line so that operator goes to beginning of line.
382 * tui/tui-winsource.c (tui_horizontal_source_scroll): Move
383 assignment out of if statement.
384
385 2011-01-07 Michael Snyder <msnyder@vmware.com>
386
387 * ada-lang.c: Comment cleanup, mostly periods and spaces.
388 * ada-lang.h: Ditto.
389 * ada-tasks.c: Ditto.
390 * ada-valprint.c: Ditto.
391 * aix-threads.c: Ditto.
392 * alpha-linux-nat.c: Ditto.
393 * alpha-linux-tdep.c: Ditto.
394 * alpha-mdebug-tdep.c: Ditto.
395 * alpha-nat.c: Ditto.
396 * alpha-osf1-tdep.c: Ditto.
397 * alpha-tdep.c: Ditto.
398 * alphabsd-nat.c: Ditto.
399 * alphabsd-tdep.c: Ditto.
400 * amd64-darwin-tdep.c: Ditto.
401 * amd64-linux-nat.c: Ditto.
402 * amd64-linux-tdep.c: Ditto.
403 * amd64-sol2-tdep.c: Ditto.
404 * amd64-tdep.c: Ditto.
405 * amd64-fbsd-tdep.c: Ditto.
406 * amd64-nbsd-tdep.c: Ditto.
407 * amd64-obsd-tdep.c: Ditto.
408 * amd64-linux-nat.c: Ditto.
409 * amd64-linux-tdep.c: Ditto.
410 * arm-tdep.c: Ditto.
411 * arm-tdep.h: Ditto.
412 * armnbsd-nat.c: Ditto.
413 * avr-tdep.c: Ditto.
414 * bfin-tdep.c: Ditto.
415 * bsd-kvm.c: Ditto.
416 * c-typeprintc: Ditto.
417 * c-valprint.c: Ditto.
418 * coff-pe-read.h: Ditto.
419 * coffreead.c: Ditto.
420 * cris-tdep.c: Ditto.
421 * d-lang.c: Ditto.
422 * darwin-nat-info.c: Ditto.
423 * darwin-nat.c: Ditto.
424 * dbug-rom.c: Ditto.
425 * dbxread.c: Ditto.
426 * dcache.c: Ditto.
427 * dcache.h: Ditto.
428 * dec-thread.c: Ditto.
429 * defs.h: Ditto.
430 * demangle.c: Ditto.
431 * dicos-tdep.c: Ditto.
432 * dictionary.c: Ditto.
433 * dictionary.h: Ditto.
434 * dink32-rom.c: Ditto.
435 * disasm.c: Ditto.
436 * doublest.c: Ditto.
437 * dsrec.c: Ditto.
438 * dummy-frame.c: Ditto.
439 * dwarf2-frame.c: Ditto.
440 * dwarf2expr.c: Ditto.
441 * dwarf2loc.c: Ditto.
442 * dwarf2read.c: Ditto.
443 * elfread.c: Ditto.
444 * environ.c: Ditto.
445 * eval.c: Ditto.
446 * event-top.h: Ditto.
447 * exceptions.c: Ditto.
448 * exceptions.h: Ditto.
449 * exec.c: Ditto.
450 * expprint.c: Ditto.
451 * expression.h: Ditto.
452 * f-exp.y: Ditto.
453 * f-lang.c: Ditto.
454 * f-lang.h: Ditto.
455 * f-typeprint.c: Ditto.
456 * f-valprint.c: Ditto.
457 * fbsd-nat.c: Ditto.
458 * findvar.c: Ditto.
459 * fork-child.c: Ditto.
460 * frame.c: Ditto.
461 * frame.h: Ditto.
462 * frv-linux-tdep.c: Ditto.
463 * frv-tdep.c: Ditto.
464 * gcore.c: Ditto.
465 * gdb-stabs.h: Ditto.
466 * gdb_assert.h: Ditto.
467 * gdb_string.h: Ditto.
468 * gdb_thread_db.h: Ditto.
469 * gdb_wait.h: Ditto.
470 * gdbarch.sh: Ditto.
471 * gdbcore.h: Ditto.
472 * gdbthread.h: Ditto.
473 * gdbtypes.c: Ditto.
474 * gdbtypes.h: Ditto.
475 * gnu-nat.c: Ditto.
476 * gnu-nat.h: Ditto.
477 * gnu-v2-abi.c: Ditto.
478 * gnu-v3-abi.c: Ditto.
479 * go32-nat.c: Ditto.
480 * gdbarch.c: Regenerate.
481 * gdbarch.h: Regenerate.
482
483 2011-01-07 Michael Snyder <msnyder@vmware.com>
484
485 * ax-gdb.c: Adjust some long output strings.
486 * breakpoint.c: Ditto.
487 * charset.c: Ditto.
488 * cp-abi.c: Ditto.
489 * infcall.c: Ditto.
490 * infrun.c: Ditto.
491 * linux-nat.c: Ditto.
492 * solib-pa64.c: Ditto.
493 * solib-som.c: Ditto.
494
495 2011-01-06 Tom Tromey <tromey@redhat.com>
496
497 PR python/12367:
498 * NEWS: Add item.
499 * python/python.c (GdbMethods): Add "newest_frame" method.
500 * python/python-internal.h (gdbpy_newest_frame): Declare.
501 * python/py-frame.c (gdbpy_newest_frame): New function.
502
503 2010-01-06 Paul Pluzhnikov <ppluzhnikov@google.com>
504
505 * jit.h (struct jit_code_entry): use ULONGEST for symfile_size.
506 * jit.c (jit_debug): New variable.
507 (show_jit_debug): New function.
508 (struct target_buffer): Use ULONGEST.
509 (bfd_open_from_target_memory): Likewise.
510 (jit_register_code, jit_inferior_init): Add debug output.
511 (_initialize_jit): Register "debug jit" command.
512
513 2011-01-06 Tom Tromey <tromey@redhat.com>
514
515 * frame.h (enum frame_type) <INLINE_FRAME>: Fix comment.
516 * python/py-frame.c (gdbpy_initialize_frames): Add INLINE_FRAME
517 and ARCH_FRAME.
518
519 2011-01-06 Tom Tromey <tromey@redhat.com>
520
521 * python/py-frame.c (frapy_block): Use get_frame_block.
522
523 2011-01-06 Joel Brobecker <brobecker@adacore.com>
524
525 Do not stop on SIGPRIO signals by default
526 * infrun.c (_initialize_infrun): Unset signal_stop and
527 signal_print for TARGET_SIGNAL_PRIO.
528
529 2011-01-06 Joel Brobecker <brobecker@adacore.com>
530
531 * ada-tasks.c: Fix style violation in comment.
532
533 2011-01-06 Joel Brobecker <brobecker@adacore.com>
534
535 * linespec.c (decode_compound, find_method): Remove trailing \n
536 at end of error string.
537 * solib-irix.c (irix_current_sos): Likewise.
538 * varobj.c (uninstall_variable): Likewise.
539
540 2011-01-06 Joel Brobecker <brobecker@adacore.com>
541
542 * copyright.py: New script.
543 * copyright.sh (byhand): Add *.ads, *.adb, *.gpr and *.inc.
544 Launch emacs without exec'ing. Call copyright.py afterwards.
545
546 2011-01-05 Michael Snyder <msnyder@vmware.com>
547
548 * addrmap.c: Shorten lines of >= 80 columns.
549 * arch-utils.c: Ditto.
550 * arch-utils.h: Ditto.
551 * ax-gdb.c: Ditto.
552 * ax-general.c: Ditto.
553 * bcache.c: Ditto.
554 * blockframe.c: Ditto.
555 * breakpoint.c: Ditto.
556 * buildsym.c: Ditto.
557 * c-lang.c: Ditto.
558 * c-typeprint.c: Ditto.
559 * charset.c: Ditto.
560 * coffread.c: Ditto.
561 * command.h: Ditto.
562 * corelow.c: Ditto.
563 * cp-abi.c: Ditto.
564 * cp-namespace.c: Ditto.
565 * cp-support.c: Ditto.
566 * dbug-rom.c: Ditto.
567 * dbxread.c: Ditto.
568 * defs.h: Ditto.
569 * dfp.c: Ditto.
570 * dfp.h: Ditto.
571 * dictionary.c: Ditto.
572 * disasm.c: Ditto.
573 * doublest.c: Ditto.
574 * dwarf2-frame.c: Ditto.
575 * dwarf2expr.c: Ditto.
576 * dwarf2loc.c: Ditto.
577 * dwarf2read.c: Ditto.
578 * elfread.c: Ditto.
579 * eval.c: Ditto.
580 * event-loop.c: Ditto.
581 * event-loop.h: Ditto.
582 * exceptions.h: Ditto.
583 * exec.c: Ditto.
584 * expprint.c: Ditto.
585 * expression.h: Ditto.
586 * f-lang.c: Ditto.
587 * f-valprint.c: Ditto.
588 * findcmd.c: Ditto.
589 * frame-base.c: Ditto.
590 * frame-unwind.c: Ditto.
591 * frame-unwind.h: Ditto.
592 * frame.c: Ditto.
593 * frame.h: Ditto.
594 * gcore.c: Ditto.
595 * gdb-stabs.h: Ditto.
596 * gdb_assert.h: Ditto.
597 * gdb_dirent.h: Ditto.
598 * gdb_obstack.h: Ditto.
599 * gdbcore.h: Ditto.
600 * gdbtypes.c: Ditto.
601 * gdbtypes.h: Ditto.
602 * inf-ttrace.c: Ditto.
603 * infcall.c: Ditto.
604 * infcmd.c: Ditto.
605 * inflow.c: Ditto.
606 * infrun.c: Ditto.
607 * inline-frame.h: Ditto.
608 * language.c: Ditto.
609 * language.h: Ditto.
610 * libunwind-frame.c: Ditto.
611 * libunwind-frame.h: Ditto.
612 * linespec.c: Ditto.
613 * linux-nat.c: Ditto.
614 * linux-nat.h: Ditto.
615 * linux-thread-db.c: Ditto.
616 * machoread.c: Ditto.
617 * macroexp.c: Ditto.
618 * macrotab.c: Ditto.
619 * main.c: Ditto.
620 * maint.c: Ditto.
621 * mdebugread.c: Ditto.
622 * memattr.c: Ditto.
623 * minsyms.c: Ditto.
624 * monitor.c: Ditto.
625 * monitor.h: Ditto.
626 * objfiles.c: Ditto.
627 * objfiles.h: Ditto.
628 * osabi.c: Ditto.
629 * p-typeprint.c: Ditto.
630 * p-valprint.c: Ditto.
631 * parse.c: Ditto.
632 * printcmd.c: Ditto.
633 * proc-events.c: Ditto.
634 * procfs.c: Ditto.
635 * progspace.c: Ditto.
636 * progspace.h: Ditto.
637 * psympriv.h: Ditto.
638 * psymtab.c: Ditto.
639 * record.c: Ditto.
640 * regcache.c: Ditto.
641 * regcache.h: Ditto.
642 * remote-fileio.c: Ditto.
643 * remote.c: Ditto.
644 * ser-mingw.c: Ditto.
645 * ser-tcp.c: Ditto.
646 * ser-unix.c: Ditto.
647 * serial.c: Ditto.
648 * serial.h: Ditto.
649 * solib-frv.c: Ditto.
650 * solib-irix.c: Ditto.
651 * solib-osf.c: Ditto.
652 * solib-pa64.c: Ditto.
653 * solib-som.c: Ditto.
654 * solib-sunos.c: Ditto.
655 * solib-svr4.c: Ditto.
656 * solib-target.c: Ditto.
657 * solib.c: Ditto.
658 * somread.c: Ditto.
659 * source.c: Ditto.
660 * stabsread.c: Ditto.
661 * stabsread.c: Ditto.
662 * stack.c: Ditto.
663 * stack.h: Ditto.
664 * symfile-mem.c: Ditto.
665 * symfile.c: Ditto.
666 * symfile.h: Ditto.
667 * symmisc.c: Ditto.
668 * symtab.c: Ditto.
669 * symtab.h: Ditto.
670 * target-descriptions.c: Ditto.
671 * target-memory.c: Ditto.
672 * target.c: Ditto.
673 * target.h: Ditto.
674 * terminal.h: Ditto.
675 * thread.c: Ditto.
676 * top.c: Ditto.
677 * tracepoint.c: Ditto.
678 * tracepoint.h: Ditto.
679 * ui-file.c: Ditto.
680 * ui-file.h: Ditto.
681 * ui-out.h: Ditto.
682 * user-regs.c: Ditto.
683 * user-regs.h: Ditto.
684 * utils.c: Ditto.
685 * valarith.c: Ditto.
686 * valops.c: Ditto.
687 * valprint.c: Ditto.
688 * valprint.h: Ditto.
689 * value.c: Ditto.
690 * varobj.c: Ditto.
691 * varobj.h: Ditto.
692 * vec.h: Ditto.
693 * xcoffread.c: Ditto.
694 * xcoffsolib.c: Ditto.
695 * xcoffsolib.h: Ditto.
696 * xml-syscall.c: Ditto.
697 * xml-tdesc.c: Ditto.
698
699 2011-01-05 Michael Snyder <msnyder@vmware.com>
700
701 * cli/cli-cmds.c: Shorten lines of >= 80 columns.
702 * cli/cli-decode.c: Ditto.
703 * cli/cli-dump.c: Ditto.
704 * cli/cli-logging.c: Ditto.
705 * cli/cli-script.c: Ditto.
706 * cli/cli-setshow.c: Ditto.
707 * common/signals.c: Ditto.
708 * mi/mi-cmd-break.c: Ditto.
709 * mi/mi-cmd-disas.c: Ditto.
710 * mi/mi-cmd-stack.c: Ditto.
711 * mi/mi-cmd-var.c: Ditto.
712 * mi/mi-cmds.c: Ditto.
713 * mi/mi-common.h: Ditto.
714 * mi/mi-console.c: Ditto.
715 * mi/mi-interp.c: Ditto.
716 * mi/mi-main.c: Ditto.
717 * osf-share/cma_attr.c: Ditto.
718 * osf-share/cma_deb_core.h: Ditto.
719 * osf-share/cma_debug_client.h: Ditto.
720 * osf-share/cma_handle.h: Ditto.
721 * osf-share/cma_mutex.h: Ditto.
722 * osf-share/cma_stack_int.h: Ditto.
723 * osf-share/cma_tcb_defs.h: Ditto.
724 * python/py-auto-load.c: Ditto.
725 * python/py-breakpoint.c: Ditto.
726 * python/py-cmd.c: Ditto.
727 * python/py-frame.c: Ditto.
728 * python/py-objfile.c: Ditto.
729 * python/py-param.c: Ditto.
730 * python/py-progspace.c: Ditto.
731 * python/py-symbol.c: Ditto.
732 * python/py-value.c: Ditto.
733 * python/python-internal.h: Ditto.
734 * python/python.c: Ditto.
735 * tui/tui-data.c: Ditto.
736 * tui/tui-disasm.c: Ditto.
737 * tui/tui-hooks.c: Ditto.
738 * tui/tui-io.c: Ditto.
739 * tui/tui-layout.c: Ditto.
740 * tui/tui-regs.c: Ditto.
741 * tui/tui-source.c: Ditto.
742 * tui/tui-stack.c: Ditto.
743 * tui/tui-win.c: Ditto.
744 * tui/tui-windata.c: Ditto.
745 * tui/tui-winsource.c: Ditto.
746
747 2011-01-05 Joel Brobecker <brobecker@adacore.com>
748
749 * configure.ac, gdb.1: Copyright year update.
750
751 2011-01-03 Jan Kratochvil <jan.kratochvil@redhat.com>
752
753 * frame.c (get_prev_frame_1) <UNWIND_INNER_ID>: New variables
754 this_pc_in_block, morestack_msym and morestack_name. Check for
755 "__morestack" minimal symbol there.
756
757 2011-01-03 Joel Brobecker <brobecker@adacore.com>
758
759 * symfile.c (find_sym_fns): Add call to dont_repeat.
760
761 2011-01-01 Joel Brobecker <brobecker@adacore.com>
762
763 Copyright year update in most files (performed by copyright.sh).
764
765 2011-01-01 Joel Brobecker <brobecker@adacore.com>
766
767 * top.c (print_gdb_version): Update copyright year in version output.
768
769 For older changes see ChangeLog-2010.
770 \f
771 Local Variables:
772 mode: change-log
773 left-margin: 8
774 fill-column: 74
775 version-control: never
776 coding: utf-8
777 End:
This page took 0.046943 seconds and 4 git commands to generate.