1 2010-03-24 Pedro Alves <pedro@codesourcery.com>
3 * mem-break.c (enum bkpt_type): New.
4 (struct breakpoint): New field `type'.
5 (set_breakpoint_at): Change return type to struct breakpoint
6 pointer. Set type to `other_breakpoint' by default.
7 (delete_breakpoint): Rewrite, supporting more than one breakpoint
8 in the breakpoint list.
9 (delete_reinsert_breakpoints): Only delete reinsert breakpoints.
10 (reinsert_breakpoint): Rename to ...
11 (reinsert_raw_breakpoint): ... this.
12 (reinsert_breakpoints_at): Adjust.
13 * mem-break.h (struct breakpoint): Declare.
14 (set_breakpoint_at): Change return type to struct breakpoint
17 2010-03-24 Pedro Alves <pedro@codesourcery.com>
19 * server.c (handle_query): Assign, not compare.
21 2010-03-24 Pedro Alves <pedro@codesourcery.com>
23 Teach linux gdbserver to step-over-breakpoints.
25 * linux-low.c (can_hardware_single_step): New.
26 (supports_breakpoints): New.
27 (handle_extended_wait): If stopping threads, read the stop pc of
30 (get_stop_pc): Add `lwp' parameter. Handle it. Bail out if the
31 low target doesn't support retrieving the PC.
32 (add_lwp): Set last_resume_kind to resume_continue.
33 (linux_attach_lwp_1): Adjust comments. Always set stop_expected.
34 (linux_attach): Don't clear stop_expected. Set the lwp's
35 last_resume_kind to resume_stop.
36 (linux_detach_one_lwp): Don't check for removed breakpoints.
37 (check_removed_breakpoint): Delete.
38 (status_pending_p): Rename to ...
39 (status_pending_p_callback): ... this. Don't check for removed
40 breakpoints. Don't consider threads that are stopped from GDB's
42 (linux_wait_for_lwp): Always read the stop_pc here.
43 (cancel_breakpoint): New.
44 (step_over_bkpt): New global.
45 (linux_wait_for_event_1): Implement stepping over breakpoints.
46 (gdb_wants_lwp_stopped): New.
47 (gdb_wants_all_stopped): New.
48 (linux_wait_1): Tag threads as gdb-wants-stopped. Cancel finished
49 single-step traps here. Store the thread's last reported target
51 (send_sigstop): Don't clear stop_expected. Always set it,
53 (mark_lwp_dead): Remove reference to pending_is_breakpoint.
54 (cancel_finished_single_step): New.
55 (cancel_finished_single_steps): New.
56 (wait_for_sigstop): Don't cancel finished single-step traps here.
57 (linux_resume_one_lwp): Don't check for removed breakpoints.
58 Don't set `step' on non-hardware step archs.
59 (linux_set_resume_request): Ignore resume_stop requests if already
60 stopping or stopped. Set the lwp's last_resume_kind.
61 (resume_status_pending_p): Don't check for removed breakpoints.
62 (need_step_over_p): New.
63 (start_step_over): New.
64 (finish_step_over): New.
65 (linux_resume_one_thread): Always queue a sigstop for resume_stop
66 requests. Clear the thread's last reported target waitstatus.
67 Don't use the `suspended' flag. Don't consider pending breakpoints.
68 (linux_resume): Start a step-over if necessary.
69 (proceed_one_lwp): New.
70 (proceed_all_lwps): New.
71 (unstop_all_lwps): New.
72 * linux-low.h (struct lwp_info): Rewrite comment for the
73 `suspended' flag. Add the `stop_pc' field. Delete the
74 `pending_stop_pc' field. Tweak the `stepping' flag's comment.
75 Add `'last_resume_kind' and `need_step_over' fields.
76 * inferiors.c (struct thread_info): Delete, moved elsewhere.
77 * mem-break.c (struct breakpoint): Delete `reinserting' flag.
78 Delete `breakpoint_to_reinsert' field. New flag `inserted'.
79 (set_raw_breakpoint_at): New.
80 (set_breakpoint_at): Rewrite to use it.
81 (reinsert_breakpoint_handler): Delete.
82 (set_reinsert_breakpoint): New.
83 (reinsert_breakpoint_by_bp): Delete.
84 (delete_reinsert_breakpoints): New.
85 (uninsert_breakpoint): Rewrite.
86 (uninsert_breakpoints_at): New.
87 (reinsert_breakpoint): Rewrite.
88 (reinsert_breakpoints_at): New.
89 (check_breakpoints): Rewrite.
90 (breakpoint_here): New.
91 (breakpoint_inserted_here): New.
92 (check_mem_read): Adjust.
93 * mem-break.h (breakpoints_supported, breakpoint_here)
94 (breakpoint_inserted_here, set_reinsert_breakpoint): Declare.
95 (reinsert_breakpoint_by_bp): Delete declaration.
96 (delete_reinsert_breakpoints): Declare.
97 (reinsert_breakpoint): Delete declaration.
98 (reinsert_breakpoints_at): Declare.
99 (uninsert_breakpoint): Delete declaration.
100 (uninsert_breakpoints_at): Declare.
101 (check_breakpoints): Adjust prototype.
102 * server.h: Adjust include order.
103 (struct thread_info): Declare here. Add a `last_status' field.
105 2010-03-23 Michael Snyder <msnyder@vmware.com>
107 * server.c (crc32): New function.
108 (handle_query): Add handling for 'qCRC:' request.
110 2010-03-23 Pedro Alves <pedro@codesourcery.com>
112 * linux-x86-low.c (x86_linux_prepare_to_resume): Clear DR6 if the
113 lwp had been stopped by a watchpoint.
115 2010-03-16 Pedro Alves <pedro@codesourcery.com>
117 * server.h (internal_error): Declare.
118 (gdb_assert, ASSERT_FUNCTION, gdb_assert_fail): Define.
119 * utils.c (internal_error): New function.
121 2010-03-15 Andreas Schwab <schwab@redhat.com>
123 * configure.srv: Fix typo setting srv_regobj.
125 2010-03-15 Pedro Alves <pedro@codesourcery.com>
127 * linux-low.c (fetch_register): Avoid passing a non string literal
129 (usr_store_inferior_registers): Ditto.
131 2010-03-14 Pedro Alves <pedro@codesourcery.com>
133 * linux-low.c (linux_write_memory): Bail out early if peeking
136 2010-03-14 Pedro Alves <pedro@codesourcery.com>
138 * linux-low.h (struct lwp_info): New fields
139 `stopped_by_watchpoint' and `stopped_data_address'.
140 * linux-low.c (linux_wait_for_lwp): Check for watchpoint triggers
141 here, and cache them in the lwp object.
142 (wait_for_sigstop): Check stopped_by_watchpoint lwp field
144 (linux_resume_one_lwp): Clear the lwp's stopped_by_watchpoint
146 (linux_stopped_by_watchpoint): Rewrite.
147 (linux_stopped_data_address): Rewrite.
149 2010-03-06 Simo Melenius <simo.melenius@iki.fi>
151 * linux-low.c (linux_wait_for_lwp): Fetch the regcache after
152 switching the current inferior, not before.
154 2010-03-01 H.J. Lu <hongjiu.lu@intel.com>
156 * Makefile.in (clean): Replace reg-i386.c, reg-x86-64.c,
157 reg-i386-linux.c and reg-x86-64-linux.c with i386.c, amd64.c,
158 i386-linux.c and amd64-linux.c.
159 (reg-i386.o): Removed.
160 (reg-i386.c): Likewise.
161 (reg-i386-linux.o): Likewise.
162 (reg-i386-linux.c): Likewise.
163 (reg-x86-64.o): Likewise.
164 (reg-x86-64.c): Likewise.
165 (reg-x86-64-linux.o): Likewise.
166 (reg-x86-64-linux.c): Likewise.
169 (i386-linux.o): Likewise.
170 (i386-linux.c): Likewise.
173 (amd64-linux.o): Likewise.
174 (amd64-linux.c): Likewise.
176 * configure.srv (srv_i386_regobj): New.
177 (srv_i386_linux_regobj): Likewise.
178 (srv_amd64_regobj): Likewise.
179 (srv_amd64_linux_regobj): Likewise.
180 (srv_i386_32bit_xmlfiles): Likewise.
181 (srv_i386_64bit_xmlfiles): Likewise.
182 (srv_i386_xmlfiles): Likewise.
183 (srv_amd64_xmlfiles): Likewise.
184 (srv_i386_linux_xmlfiles): Likewise.
185 (srv_amd64_linux_xmlfiles): Likewise.
186 (i[34567]86-*-cygwin*): Set srv_regobj to $srv_i386_regobj. Set
187 srv_xmlfiles to $srv_i386_xmlfiles.
188 (i[34567]86-*-mingw32ce*): Likewise.
189 (i[34567]86-*-mingw*): Likewise.
190 (i[34567]86-*-nto*): Likewise.
191 (i[34567]86-*-linux*): Set srv_regobj to $srv_i386_linux_regobj
192 and $srv_amd64_linux_regobj. Set srv_xmlfiles to
193 $srv_i386_linux_xmlfiles and $srv_amd64_linux_xmlfiles.
194 (x86_64-*-linux*): Likewise.
196 * linux-x86-low.c (init_registers_x86_64_linux): Removed.
197 (init_registers_amd64_linux): New.
198 (x86_arch_setup): Replace init_registers_x86_64_linux with
199 init_registers_amd64_linux.
201 2010-02-23 Maxim Kuvyrkov <maxim@codesourcery.com>
203 * configure.ac: Check for libdl. If it is not available link against
205 * configure: Regenerate.
207 2010-02-22 Pedro Alves <pedro@codesourcery.com>
211 * i386-low.c (i386_length_and_rw_bits): Throw a fatal error if
212 handing a read watchpoint.
213 (i386_low_insert_watchpoint): Read watchpoints aren't supported.
215 2010-02-12 Doug Evans <dje@google.com>
217 * linux-low.c (linux_supports_tracefork_flag): Document.
218 (linux_look_up_symbols): Add comment.
220 2010-02-03 H.J. Lu <hongjiu.lu@intel.com>
222 * regcache.c (supply_register): Clear regcache if buf is NULL.
224 2010-02-02 Nicolas Roche <roche@sourceware.org>
225 Joel Brobecker <brobecker@adacore.com>
227 * inferiors.c (find_inferior): Add function documentation.
228 (unloaded_dll): Handle the case where the unloaded dll has not
229 been previously registered in the dll list.
231 2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
233 * linux-arm-low.c (thumb_breakpoint_len): Delete.
234 (thumb2_breakpoint): New.
235 (arm_breakpoint_at): Check for Thumb-2 breakpoints.
237 2010-01-29 Daniel Jacobowitz <dan@codesourcery.com>
239 * linux-low.c (get_stop_pc): Check for SIGTRAP.
240 (linux_wait_for_event_1): Handle SIGILL and SIGSEGV as possible
243 2010-01-21 Pedro Alves <pedro@codesourcery.com>
245 * linux-ppc-low.c (ppc_arch_setup): Adjust to regcache changes.
247 2010-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
249 * linux-s390-low.c (s390_collect_ptrace_register)
250 (s390_supply_ptrace_register): Adjust it for the new regcache parameter.
252 2010-01-21 Doug Evans <dje@google.com>
254 * linux-low.c (PTRACE_ARG3_TYPE): Change from long to void*.
255 (PTRACE_ARG4_TYPE): New macro.
256 (handle_extended_wait): Cast ptrace arg4 to PTRACE_ARG4_TYPE.
257 (linux_wait_for_event_1, linux_resume_one_lwp): Ditto.
258 (fetch_register): Cast to uintptr_t before casting to PTRACE_ARG3_TYPE.
259 (usr_store_inferior_registers): Ditto.
260 (linux_read_memory, linux_write_memory): Ditto.
261 (linux_test_for_tracefork): Ditto.
263 * linux-arm-low.c: Remove redundant include of gdb_proc_service.h.
264 Only include elf.h if gdb_proc_service.h didn't include linux/elf.h.
266 2010-01-21 Pedro Alves <pedro@codesourcery.com>
268 * proc-service.c (ps_lgetregs): Don't refetch registers from the
271 2010-01-21 Pedro Alves <pedro@codesourcery.com>
273 * spu-low.c (spu_fetch_registers, spu_store_registers): Change
274 prototype to take a regcache. Adjust.
276 2010-01-20 Pedro Alves <pedro@codesourcery.com>
278 * regcache.h (struct thread_info): Forward declare.
279 (struct regcache): New.
280 (new_register_cache): Adjust prototype.
281 (get_thread_regcache): Declare.
282 (free_register_cache): Adjust prototype.
283 (registers_to_string, registers_from_string): Ditto.
284 (supply_register, supply_register_by_name, collect_register)
285 (collect_register_as_string, collect_register_by_name): Ditto.
286 * regcache.c (struct inferior_regcache_data): Delete.
287 (get_regcache): Rename to ...
288 (get_thread_regcache): ... this. Adjust. Switch inferior before
290 (regcache_invalidate_one): Adjust.
291 (regcache_invalidate): Fix prototype.
292 (new_register_cache): Return the new register cache.
293 (free_register_cache): Change prototype.
294 (realloc_register_cache): Adjust.
295 (registers_to_string): Change prototype to take a regcache. Adjust.
296 (registers_from_string): Ditto.
297 (register_data): Ditto.
298 (supply_register): Ditto.
299 (supply_register_by_name): Ditto.
300 (collect_register): Ditto.
301 (collect_register_as_string): Ditto.
302 (collect_register_by_name): Ditto.
303 * server.c (process_serial_event): Adjust.
304 * linux-low.h (regset_fill_func, regset_store_func): Change
306 (get_pc, set_pc, collect_ptrace_register, supply_ptrace_register):
308 * linux-low.c (get_stop_pc): Adjust.
309 (check_removed_breakpoint): Adjust.
310 (linux_wait_for_event): Adjust.
311 (linux_resume_one_lwp): Adjust.
312 (fetch_register): Add regcache parameter. Adjust.
313 (usr_store_inferior_registers): Ditto.
314 (regsets_fetch_inferior_registers): Ditto.
315 (regsets_store_inferior_registers): Ditto.
316 (linux_fetch_registers, linux_store_registers): Ditto.
317 * i387-fp.c (i387_cache_to_fsave): Change prototype to take a
319 (i387_fsave_to_cache, i387_cache_to_fxsave, i387_fxsave_to_cache): Ditto.
320 * i387-fp.h (i387_cache_to_fsave, i387_fsave_to_cache): Change
321 prototype to take a regcache.
322 (i387_cache_to_fxsave, i387_fxsave_to_cache): Ditto.
323 * remote-utils.c (convert_ascii_to_int, outreg)
324 (prepare_resume_reply): Change prototype to take a regcache.
326 * target.h (struct target_ops) <fetch_registers, store_registers>:
327 Change prototype to take a regcache.
328 (fetch_inferior_registers, store_inferior_registers): Change
329 prototype to take a regcache. Adjust.
330 * proc-service.c (ps_lgetregs): Adjust.
331 * linux-x86-low.c (x86_fill_gregset, x86_store_gregset)
332 (x86_fill_fpregset, x86_store_fpregset, x86_fill_fpxregset)
333 (x86_store_fpxregset, x86_get_pc, x86_set_pc): Change prototype to
334 take a regcache. Adjust.
335 * linux-arm-low.c (arm_fill_gregset, arm_store_gregset)
336 (arm_fill_wmmxregset, arm_store_wmmxregset, arm_fill_vfpregset)
337 (arm_store_vfpregset, arm_get_pc, arm_set_pc):
338 (arm_breakpoint_at): Change prototype to take a regcache. Adjust.
339 * linux-cris-low.c (cris_get_pc, cris_set_pc)
340 (cris_cannot_fetch_register):
341 (cris_breakpoint_at): Change prototype to take a regcache.
343 * linux-crisv32-low.c (cris_get_pc, cris_set_pc,
344 cris_reinsert_addr, cris_write_data_breakpoint): Change prototype
345 to take a regcache. Adjust.
346 (cris_breakpoint_at, cris_insert_point, cris_remove_point):
348 * linux-m32r-low.c (m32r_get_pc, m32r_set_pc): Change prototype to
349 take a regcache. Adjust.
350 * linux-m68k-low.c (m68k_fill_gregset, m68k_store_gregset)
351 (m68k_fill_fpregset, m68k_store_fpregset, m68k_get_pc,
352 (m68k_set_pc): Change prototype to take a regcache. Adjust.
353 * linux-mips-low.c (mips_get_pc):
354 (mips_set_pc): Change prototype to take a regcache. Adjust.
355 (mips_reinsert_addr): Adjust.
356 (mips_collect_register): Change prototype to take a regcache.
358 (mips_supply_register):
359 (mips_collect_register_32bit, mips_supply_register_32bit)
360 (mips_fill_gregset, mips_store_gregset, mips_fill_fpregset)
361 (mips_store_fpregset): Ditto.
362 * linux-ppc-low.c (ppc_supply_ptrace_register, ppc_supply_ptrace_register):
364 (parse_spufs_run): Adjust.
365 (ppc_get_pc, ppc_set_pc, ppc_fill_gregset, ppc_fill_vsxregset)
366 (ppc_store_vsxregset, ppc_fill_vrregset, ppc_store_vrregset)
367 (ppc_fill_evrregset, ppc_store_evrregset): Change prototype to
368 take a regcache. Adjust.
369 * linux-s390-low.c (s390_collect_ptrace_register)
370 (s390_supply_ptrace_register, s390_fill_gregset, s390_get_pc)
371 (s390_set_pc): Change prototype to take a regcache. Adjust.
372 (s390_arch_setup): Adjust.
373 * linux-sh-low.c (sh_get_pc, sh_breakpoint_at)
374 (sh_fill_gregset): Change prototype to take a regcache. Adjust.
375 * linux-sparc-low.c (sparc_fill_gregset_to_stack)
376 (sparc_fill_gregset, sparc_store_gregset_from_stack)
377 (sparc_store_gregset, sparc_get_pc): Change prototype to take a
379 (sparc_breakpoint_at): Adjust.
380 * linux-xtensa-low.c (xtensa_fill_gregset):
381 (xtensa_store_gregset):
382 (xtensa_fill_xtregset, xtensa_store_xtregset, xtensa_get_pc)
383 (xtensa_set_pc): Change prototype to take a regcache. Adjust.
384 * nto-low.c (nto_fetch_registers, nto_store_registers): Change
385 prototype to take a regcache. Adjust.
386 * win32-arm-low.c (arm_fetch_inferior_register)
387 (arm_store_inferior_register): Change prototype to take a
389 * win32-i386-low.c (i386_fetch_inferior_register)
390 (i386_store_inferior_register): Change prototype to take a
392 * win32-low.c (child_fetch_inferior_registers)
393 (child_store_inferior_registers): Change prototype to take a
395 (win32_wait): Adjust.
396 (win32_fetch_inferior_registers): Change prototype to take a
398 (win32_store_inferior_registers): Adjust.
399 * win32-low.h (struct win32_target_ops) <fetch_inferior_register,
400 store_inferior_register>: Change prototype to take a regcache.
402 2010-01-20 Doug Evans <dje@google.com>
404 * linux-low.c (linux_create_inferior): Wrap use of __SIGRTMIN in
406 (linux_wait_for_event1, linux_init_signals): Ditto.
407 (W_STOPCODE): Provide definition if missing.
409 2010-01-13 Vladimir Prus <vladimir@codesourcery.com>
411 * linux-low.c (linux_core_of_thread): New.
412 (compare_ints, show_process, list_threads): New.
413 (linux_qxfer_osdata): Report threads and cores.
414 (linux_target_op): Register linux_core_of_thread.
415 * remote-utils.c (prepare_resume_reply): Report the core.
416 (buffer_xml_printf): Support %d specifier.
417 * server.c (handle_threads_qxfer_proper, handle_threads_qxfer):
419 (handle_query): Handle qXfer:threads. Announce availability
421 * target.h (struct target_ops): New field core_of_thread.
423 2010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
425 * Makefile.in (clean): Remove new generated files.
426 (reg-s390.o, reg-s390.c): Remove rules.
427 (reg-s390x.o, reg-s390x.c): Likewise.
428 (s390-linux32.o, s390-linux32.c): Add rules.
429 (s390-linux64.o, s390-linux64.c): Likewise.
430 (s390x-linux64.o, s390x-linux64.c): Likewise.
431 * configure.srv (s390*-*-linux*): Update srv_regobj and srv_xmlfiles.
432 * linux-s390-low.c: Include <elf.h>.
433 (HWCAP_S390_HIGH_GPRS): Define if undefined.
434 (init_registers_s390): Remove prototype.
435 (init_registers_s390x): Likewise.
436 (init_registers_s390_linux32): Add prototype.
437 (init_registers_s390_linux64): Likewise.
438 (init_registers_s390x_linux64): Likewise.
439 (s390_num_regs_3264): New define.
440 (s390_regmap_3264): New global variable.
441 (s390_cannot_fetch_register): Remove obsolete check.
442 (s390_cannot_store_register): Likewise.
443 (s390_collect_ptrace_register): Handle upper/lower register halves.
444 (s390_supply_ptrace_register): Likewise.
445 (s390_fill_gregset): Update to register number changes.
446 (s390_get_hwcap): New routine.
447 (s390_arch_setup): Detect 32-bit process running on 64-bit system.
448 Install appropriate regmap and register set.
450 2010-01-01 Joel Brobecker <brobecker@adacore.com>
452 * server.c (gdbserver_version): Update copyright year to 2010.
453 * gdbreplay.c (gdbreplay_version): Likewise.
455 2009-12-28 Doug Evans <dje@google.com>
457 * linux-low.c: Delete inclusion of ansidecl.h, elf/common.h,
458 elf/external.h. Include <elf.h> instead but only if necessary.
460 2009-12-28 Pedro Alves <pedro@codesourcery.com>
462 * linux-low.c (linux_remove_process): Remove `detaching'
463 parameter. Don't release/detach from thread_db here.
464 (linux_kill): Release/detach from thread_db here, ...
465 (linux_detach): ... and here, before actually detaching.
466 (linux_wait_1): ... and here, when a process exits.
467 * thread-db.c (any_thread_of): New.
468 (thread_db_free): Switch the current inferior to a thread of the
471 2009-12-21 Doug Evans <dje@google.com>
473 * linux-x86-low.c: Delete outdated comment about Elf32_Phdr.
475 * linux-low.c (kill_lwp): Use __NR_tkill instead of SYS_tkill.
476 Move definition of tkill_failed to ifdef __NR_tkill to avoid gcc
477 warning ifndef __NR_tkill. Move setting of errno there too.
478 Delete unnecessary resetting of errno after syscall.
479 Minor comment changes to match gdb/linux-nat.c:kill_lwp.
481 * configure.ac: Check for dladdr.
482 * config.in: Regenerate.
483 * configure: Regenerate.
484 * thread-db.c (dladdr_to_soname): Only define ifdef HAVE_DLADDR.
485 (try_thread_db_load): Update.
487 * linux-low.c (my_waitpid): Delete unnecessary prototype.
489 2009-12-18 Doug Evans <dje@google.com>
491 * event-loop.c: Include unistd.h if it exists.
493 * linux-low.c (my_waitpid): Move definition away from being in
494 between linux_tracefork_child/linux_test_for_tracefork.
496 * gdb_proc_service.h (psaddr_t): Fix type.
497 * thread-db.c (thread_db_info.td_thr_tls_get_addr_p): Fix
498 signature to match glibc.
500 2009-12-16 Doug Evans <dje@google.com>
502 * linux-low.c (linux_read_memory): Fix argument to read.
504 2009-11-26 Pedro Alves <pedro@codesourcery.com>
506 * win32-low.c (get_child_debug_event): On EXIT_THREAD_DEBUG_EVENT
507 events, don't leave current_inferior pointing at null.
509 2009-11-26 Pedro Alves <pedro@codesourcery.com>
511 * win32-low.c (LOG): Delete.
512 (OUTMSG): Output to stderr.
513 (OUTMSG2): Conditionalize on `debug_threads' variable, instead of
514 on compile time LOG macro.
515 (win32_wait): Fix debug output.
517 2009-11-26 Pedro Alves <pedro@codesourcery.com>
519 * win32-low.c (win32_add_one_solib): If the dll name is
520 "ntdll.dll", prepend the system directory to the dll path.
522 2009-11-17 Daniel Jacobowitz <dan@codesourcery.com>
524 * m68k-tdep.c (m68k_gdbarch_init): Reuse previous initialization.
526 2009-11-17 Nathan Sidwell <nathan@codesourcery.com>
527 Vladimir Prus <vladimir@codesourcery.com>
529 * Makefile.in (reg-cf.o, reg-cf.c): New targets.
530 * configure.ac: Check for __mcoldfire__ and set
531 gdb_cv_m68k_is_coldfire.
532 * configure.srv: Use gdb_cv_m68k_is_coldfire to select between
533 reg-cf.o and reg-m68k.o.
534 * configure: Regenerated.
536 2009-11-16 Pedro Alves <pedro@codesourcery.com>
538 * linux-low.c (linux_remove_process): Add `detaching' parameter.
539 Pass it to thread_db_free.
540 (linux_kill, linux_detach, linux_wait_1): Adjust to pass the
541 proper `detaching' argument to linux_remove_process.
542 * linux-low.h (thread_db_free): Add `detaching' parameter.
543 * thread-db.c (thread_db_init): Pass false as `detaching' argument
545 (thread_db_free): Add `detaching' parameter. Only
546 call td_ta_clear_event if detaching from process.
548 2009-11-12 Maxim Kuvyrkov <maxim@codesourcery.com>
550 * thread-db.c (thread_db_free): Fix typo.
552 2009-11-11 Paul Pluzhnikov <ppluzhnikov@google.com>
555 * thread-db.c (thread_db_free): Call td_ta_clear_event.
557 2009-11-03 Nathan Sidwell <nathan@codesourcery.com>
559 * configure.ac (i[34567]86-*): Check if we're targetting x86-64
560 with an i686 compiler.
561 * configure.srv (i[34567]86-*-linux*): Pull in x86-64 handling if
563 * configure: Rebuilt.
565 2009-10-29 Sandra Loosemore <sandra@codesourcery.com>
569 * server.c (handle_search_memory_1): Correct read_addr initialization
570 in loop for searching subsequent chunks.
572 2009-10-29 Paul Pluzhnikov <ppluzhnikov@google.com>
574 * configure.ac: New --with-libthread-db option.
575 * thread-db.c: Allow direct dependence on libthread_db.
576 (thread_db_free): Adjust.
577 * config.in: Regenerate.
578 * configure: Likewise.
580 2009-10-28 Paul Pluzhnikov <ppluzhnikov@google.com>
583 * thread-db.c (attach_thread): New function.
584 (maybe_attach_thread): Return success/failure.
585 (find_new_threads_callback): Adjust.
586 (thread_db_find_new_threads): Loop until no new threads.
588 2009-10-13 Pedro Alves <pedro@codesourcery.com>
590 * proc-service.c (ps_lgetregs): Formatting.
592 2009-10-08 Paul Pluzhnikov <ppluzhnikov@google.com>
594 * acinclude.m4: (SRV_CHECK_THREAD_DB, SRV_CHECK_TLS_GET_ADDR): Remove.
595 * configure.ac: Adjust.
596 * linux-low.h (struct process_info_private): Move members to struct
598 (thread_db_free, thread_db_handle_monitor_command): New prototype.
599 * linux-low.c (linux_remove_process): Adjust.
600 (linux_wait_for_event_1, linux_look_up_symbols): Likewise.
601 * server.c (handle_query): Move code ...
602 (handle_monitor_command): ... here. New function.
603 * target.h (struct target_ops): New member.
604 * thread-db.c (struct thread_db): New.
605 (libthread_db_search_path): New variable.
606 (thread_db_create_event, thread_db_enable_reporting)
607 (find_one_thread, maybe_attach_thread, find_new_threads_callback)
608 (thread_db_find_new_threads, (thread_db_get_tls_address): Adjust.
609 (try_thread_db_load_1, dladdr_to_soname): New functions.
610 (try_thread_db_load, thread_db_load_search): New functions.
611 (thread_db_init): Search for libthread_db.
612 (thread_db_free): New function.
613 (thread_db_handle_monitor_command): Likewise.
614 * config.in: Regenerate.
615 * configure: Regenerate.
617 2009-09-27 Ulrich Weigand <uweigand@de.ibm.com>
619 * spu-low.c (spu_kill): Wait for inferior to terminate.
620 Call clear_inferiors.
621 (spu_detach): Call clear_inferiors.
623 2009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
625 * aclocal.m4: Regenerate.
626 * config.in: Likewise.
627 * configure: Likewise.
629 2009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
631 * linux-ppc-low.c (INSTR_SC, NR_spu_run): Define.
632 (parse_spufs_run): New function.
633 (ppc_get_pc, ppc_set_pc): Detect and handle SPU PC.
634 (ppc_breakpoint_at): Handle SPU breakpoints.
636 2009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
638 * linux-low.c: Include <sys/stat.h> and <sys/vfs.h>.
639 (SPUFS_MAGIC): Define.
640 (spu_enumerate_spu_ids): New function.
641 (linux_qxfer_spu): New function.
642 (linux_target_ops): Install linux_qxfer_spu.
644 2009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
646 * configure.srv (powerpc*-*-linux*): Add powerpc-cell32l.o
647 and powerpc-cell64l.o to srv_regobj. Add rs6000/powerpc-cell32l.xml
648 and rs6000/powerpc-cell64l.xml to srv_xmlfiles.
649 * Makefile.in (powerpc-cell32l.o, powerpc-cell32l.c): New rules.
650 (powerpc-cell64l.o, powerpc-cell64l.c): Likewise.
651 (clean): Handle powerpc-cell32l.c and powerpc-cell64l.c.
652 * linux-ppc-low.c (PPC_FEATURE_CELL): Define.
653 (init_registers_powerpc_cell32l): Add prototype.
654 (init_registers_powerpc_cell64l): Likewise.
655 (ppc_arch_setup): Detect Cell/B.E. architecture.
657 2009-07-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
659 * Makefile.in (datarootdir): New variable.
661 2009-07-28 Daniel Jacobowitz <dan@codesourcery.com>
663 * linux-low.c (linux_write_memory): Update debugging output.
664 * Makefile.in (clean): Add new descriptions.
665 (arm-with-vfpv2.o, arm-with-vfpv2.c, arm-with-vfpv3.o)
666 (arm-with-vfpv3.c, arm-with-neon.o, arm-with-neon.c): New rules.
667 * configure.srv: Add new files for arm*-*-linux*.
668 * linux-arm-low.c: Add new declarations.
669 (PTRACE_GETVFPREGS, PTRACE_SETVFPREGS): Define if undefined.
670 (arm_hwcap, HWCAP_VFP, HWCAP_IWMMXT, HWCAP_NEON, HWCAP_VFPv3)
671 (HWCAP_VFPv3D16): New.
672 (arm_fill_wmmxregset, arm_store_wmmxregset): Check HWCAP_IWMMXT
673 instead of __IWMMXT__.
674 (arm_fill_vfpregset, arm_store_vfpregset, arm_get_hwcap)
675 (arm_arch_setup): New.
676 (target_regsets): Remove #ifdef. Add VFP regset.
677 (the_low_target): Use arm_arch_setup.
679 2009-07-28 Daniel Jacobowitz <dan@codesourcery.com>
681 * linux-low.c (linux_kill_one_lwp): Adjust kernel workaround to skip
682 the main thread again.
684 2009-07-06 Aleksandar Ristovski <aristovski@qnx.com>
686 Adding Neutrino gdbserver.
687 * configure: Regenerated.
688 * configure.ac: Add case for srv_qnx and set LIBS accordingly.
689 * configure.srv (i[34567]86-*-nto*): New target.
690 * nto-low.c, nto-low.h, nto-x86-low.c: New files.
691 * remote-utils.c [__QNX__]: Include sys/iomgr.h
692 (nto_comctrl) [__QNX__]: New function.
693 (enable_async_io, disable_async_io) [__QNX__]: Call nto_comctrl.
695 2009-07-05 Danny Backx <dannybackx@users.sourceforge.net>
697 * configure.srv (i[34567]86-*-mingw32ce*): Add i386-low.o to
700 2009-07-04 Danny Backx <dannybackx@users.sourceforge.net>
701 Pedro Alves <pedro@codesourcery.com>
703 * win32-i386-low.c (i386_get_thread_context): Handle systems that
704 don't support CONTEXT_EXTENDED_REGISTERS.
705 (i386_win32_breakpoint, i386_win32_breakpoint_len): New.
706 (the_low_target): Install them.
707 * win32-low.c (get_child_debug_event): Handle WaitForDebugEvent
708 failing with ERROR_PIPE_NOT_CONNECTED.
710 2009-06-30 Doug Evans <dje@google.com>
711 Pierre Muller <muller@ics.u-strasbg.fr>
713 Add h/w watchpoint support to x86-linux, win32-i386.
714 * Makefile.in (SFILES): Add i386-low.c
715 (i386_low_h): Define.
716 (i386-low.o): Add dependencies.
717 (linux-x86-low.o): Add i386-low.h dependency.
718 (win32-i386-low.o): Ditto.
719 * i386-low.c: New file.
720 * i386-low.h: New file.
721 * configure.srv (i[34567]86-*-cygwin*): Add i386-low.o to srv_tgtobj.
722 (i[34567]86-*-linux*, i[34567]86-*-mingw*, x86_64-*-linux*): Ditto.
723 * linux-low.c (linux_add_process): Initialize arch_private.
724 (linux_remove_process): Free arch_private.
725 (add_lwp): Initialize arch_private.
726 (delete_lwp): Free arch_private.
727 (linux_resume_one_lwp): Call the_low_target.prepare_to_resume if
729 * linux-low.h (process_info_private): New member arch_private.
730 (lwp_info): New member arch_private.
731 (linux_target_ops): New members new_process, new_thread,
733 (ptid_of): New macro.
734 * linux-x86-low.c: Include stddef.h, i386-low.h.
735 (arch_process_info): New struct.
736 (arch_lwp_info): New struct.
737 (x86_linux_dr_get, x86_linux_dr_set): New functions.
738 (i386_dr_low_set_addr, i386_dr_low_set_control): New functions.
739 (i386_dr_low_get_status): New function.
740 (x86_insert_point, x86_remove_point): New functions.
741 (x86_stopped_by_watchpoint): New function.
742 (x86_stopped_data_address): New function.
743 (x86_linux_new_process, x86_linux_new_thread): New functions.
744 (x86_linux_prepare_to_resume): New function.
745 (the_low_target): Add entries for insert_point, remove_point,
746 stopped_by_watchpoint, stopped_data_address, new_process, new_thread,
748 * server.c (debug_hw_points): New global.
749 (monitor_show_help): Document set debug-hw-points.
750 (handle_query): Process "set debug-hw-points".
751 * server.h (debug_hw_points): Declare.
753 * utils.c (NUMCELLS, CELLSIZE): New macros.
754 (get_sell, xsnprintf, paddress): New functions.
755 * win32-arm-low.c (the_low_target): Add entries for insert_point,
756 remove_point, stopped_by_watchpoint, stopped_data_address.
757 * win32-i386-low.c: Include i386-low.h.
758 (debug_reg_state): Replaces dr.
759 (i386_dr_low_set_addr, i386_dr_low_set_control): New functions.
760 (i386_dr_low_get_status): New function.
761 (i386_insert_point, i386_remove_point): New functions.
762 (i386_stopped_by_watchpoint): New function.
763 (i386_stopped_data_address): New function.
764 (i386_initial_stuff): Update.
765 (get_thread_context,set_thread_context,i386_thread_added): Update.
766 (the_low_target): Add entries for insert_point,
767 remove_point, stopped_by_watchpoint, stopped_data_address.
768 * win32-low.c (win32_insert_watchpoint): New function.
769 (win32_remove_watchpoint): New function.
770 (win32_stopped_by_watchpoint): New function.
771 (win32_stopped_data_address): New function.
772 (win32_target_ops): Add entries for insert_watchpoint,
773 remove_watchpoint, stopped_by_watchpoint, stopped_data_address.
774 * win32-low.h (win32_target_ops): New members insert_point,
775 remove_point, stopped_by_watchpoint, stopped_data_address.
777 2009-06-25 Pedro Alves <pedro@codesourcery.com>
779 * server.c (process_serial_event): Re-return unsupported, not
780 error, if the type isn't recognized. Re-allow supporting only
781 insert or remove packets. Also call require_running for
782 breakpoints. Add missing break statement to default case. Tidy.
783 * target.h (struct target_ops): Rename insert_watchpoint to
784 insert_point, and remove_watchpoint to remove_point.
786 * linux-low.h (struct linux_target_ops): Likewise.
787 * linux-low.c (linux_insert_watchpoint): Rename to ...
788 (linux_insert_point): ... this. Adjust.
789 (linux_remove_watchpoint): Rename to ...
790 (linux_remove_point): ... this. Adjust.
791 (linux_target_ops): Adjust.
792 * linux-crisv32-low.c (cris_insert_watchpoint): Rename to ...
793 (cris_insert_point): ... this.
794 (cris_remove_watchpoint): Rename to ...
795 (cris_remove_point): ... this.
796 (the_low_target): Adjust.
798 2009-06-24 Pierre Muller <muller@ics.u-strasbg.fr>
800 * server.c (handle_v_kill): Pass signal_pid to
801 kill_inferior if multi_process is zero.
803 2009-06-23 Aleksandar Ristovski <aristovski@qnx.com>
805 * server.c (process_serial_event): Add support for Z0 and Z1 packet.
806 * target.h (target_ops): Comment for *_watchpoint to make it clear
807 the functions can get types '0' and '1'.
809 2009-06-22 Aleksandar Ristovski <aristovski@qnx.com>
811 * linux-low.c (usr_fetch_inferior_registers): Remove check for regno 0.
812 * proc-service.c (ps_lgetregs): Pass -1 to fetch all registers.
813 * regcache.c (get_regcache): Likewise.
814 * spu-low.c (spu_fetch_registers): Remove 0 to -1 conversion.
815 * win32-low.c (child_fetch_inferior_registers): Remove check for
818 2009-06-19 Aleksandar Ristovski <aristovski@qnx.com>
819 Pedro Alves <pedro@codesourcery.com>
821 * target.h (struct target_ops) <supports_multi_process>: New
823 (target_supports_multi_process): New.
824 * server.c (handle_query): Even if GDB reports support, only
825 enable multi-process if the target also supports it. Report
826 multi-process support only if the target backend supports it.
827 * linux-low.c (linux_supports_multi_process): New function.
828 (linux_target_ops): Install it as target_supports_multi_process
831 2009-05-24 Doug Evans <dje@google.com>
833 Global renaming of find_thread_pid to find_thread_ptid.
834 * server.h (find_thread_ptid): Renamed from find_thread_pid.
835 * inferiors.c (find_thread_ptid): Renamed from find_thread_pid.
838 * linux-low.c (handle_extended_wait): Use linux_resume_one_lwp
839 to resume the newly created thread, don't call ptrace (PTRACE_CONT)
842 * linux-low.c (get_stop_pc): Print pc if debug_threads.
843 (check_removed_breakpoint, linux_wait_for_lwp): Ditto.
844 (linux_resume_one_lwp): Ditto.
846 2009-05-23 Doug Evans <dje@google.com>
848 * linux-low.c (linux_resume_one_lwp): Change type of first arg
849 from struct inferior_list_entry * to struct lwp_info *.
852 2009-05-13 Doug Evans <dje@google.com>
854 * linux-x86-low.c: Don't include assert.h.
855 (x86_siginfo_fixup): Use fatal, not assert.
856 (x86_arch_setup): Fix comment.
858 2009-05-12 Doug Evans <dje@google.com>
860 Biarch support for i386/amd64 gdbserver.
861 * Makefile.in (SFILES): Remove linux-i386-low.c, linux-x86-64-low.c.
863 (linux-i386-low.o, linux-x86-64-low.o): Delete.
864 (linux-x86-low.o): Add.
865 * linux-x86-64-low.c: Delete.
866 * linux-i386-low.c: Delete.
867 * linux-x86-low.c: New file.
868 * configure.srv (i?86-linux srv_tgtobj): Replace linux-i386-low.o with
870 (x86_64-linux srv_tgtobj): Replace linux-x86-64-low.o with
872 (x86_64-linux srv_regobj): Add reg-i386-linux.o.
873 * linux-low.c: Include ansidecl.h, elf/common.h, elf/external.h.
874 (linux_child_pid_to_exec_file): New function.
875 (elf_64_header_p, elf_64_file_p): New functions.
876 (siginfo_fixup): New function.
877 (linux_xfer_siginfo): New local inf_siginfo. Call siginfo_fixup to
878 give target a chance to convert layout.
879 * linux-low.h (linux_target_ops): New member siginfo_fixup.
880 (linux_child_pid_to_exec_file, elf_64_file_p): Declare.
882 2009-05-07 Doug Evans <dje@google.com>
884 * linux-low.c (regsets_fetch_inferior_registers): Fix memory leak.
885 (regsets_store_inferior_registers): Ditto.
887 2009-05-06 Pedro Alves <pedro@codesourcery.com>
891 * linux-low.c (must_set_ptrace_flags): Delete.
892 (linux_create_inferior): Set `lwp->must_set_ptrace_flags' instead
894 (linux_attach_lwp_1): Don't set PTRACE_SETOPTIONS here. Set
895 `lwp->must_set_ptrace_flags' instead.
896 (linux_wait_for_event_1): Set ptrace options here.
897 (linux_wait_1): ... not here.
899 2009-04-30 Doug Evans <dje@google.com>
901 * inferiors.c (started_inferior_callback): New function.
902 (attached_inferior_callback): New function.
903 (have_started_inferiors_p, have_attached_inferiors_p): New functions.
904 * server.c (print_started_pid, print_attached_pid): New functions.
905 (detach_or_kill_for_exit): New function.
906 (main): Call it instead of for_each_inferior (kill_inferior_callback).
907 * server.h (have_started_inferiors_p): Declare.
908 (have_attached_inferiors_p): Declare.
910 * inferiors.c (remove_process): Fix memory leak, free process.
911 * linux-low.c (linux_remove_process): New function.
912 (linux_kill): Call it instead of remove_process.
913 (linux_detach, linux_wait_1): Ditto.
915 2009-04-19 Danny Backx <dannybackx@users.sourceforge.net>
917 * configure.srv: Add x86 Windows CE target.
919 2009-04-03 Ulrich Weigand <uweigand@de.ibm.com>
921 * inferiors.c (get_thread_process): Make global.
922 * server.h (get_thread_process): Add prototype.
923 * thread-db.c (find_one_thread): Use get_thread_process
924 instead of current_process.
925 (thread_db_get_tls_address): Do not crash if called when
926 thread layer is not yet initialized.
928 2009-04-03 Ulrich Weigand <uweigand@de.ibm.com>
930 * remote-utils.c (prepare_resume_reply): Null-terminate packet.
931 * spu-low.c (current_tid): Rename to ...
932 (current_ptid): ... this.
933 (fetch_ppc_register, fetch_ppc_memory, store_ppc_memory,
934 spu_proc_xfer_spu, spu_resume, spu_request_interrupt): Use
935 ptid_get_lwp (current_ptid) instead of current_tid.
936 (spu_kill, spu_detach, spu_join, spu_wait): Use pid argument
937 instead of current_tid. Use find_process_pid to verify pid
938 argument is valid. Pass proper argument to remove_process.
939 (spu_thread_alive): Compare current_ptid instead of current_tid.
940 (spu_resume): Likewise.
942 2009-04-02 Pedro Alves <pedro@codesourcery.com>
944 * linux-low.c (usr_store_inferior_registers): Declare local `pid'
947 2009-04-01 Pedro Alves <pedro@codesourcery.com>
949 Implement the multiprocess extensions, and add linux multiprocess
952 * server.h (ULONGEST): Declare.
953 (struct ptid, ptid_t): New.
954 (minus_one_ptid, null_ptid): Declare.
955 (ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_lwp)
956 (ptid_get_tid, ptid_equal, ptid_is_pid): Declare.
957 (struct inferior_list_entry): Change `id' type from unsigned from
959 (struct sym_cache, struct breakpoint, struct
960 process_info_private): Forward declare.
961 (struct process_info): Declare.
962 (current_process): Declare.
963 (all_processes): Declare.
964 (initialize_inferiors): Declare.
965 (add_thread): Adjust to use ptid_t.
966 (thread_id_to_gdb_id, thread_to_gdb_id, gdb_id_to_thread_id): Ditto.
967 (add_process, remove_process, find_thread_pid): Declare.
968 (find_inferior_id): Adjust to use ptid_t.
969 (cont_thread, general_thread, step_thread): Change type to ptid_t.
970 (multi_process): Declare.
971 (push_event): Adjust to use ptid_t.
972 (read_ptid, write_ptid): Declare.
973 (prepare_resume_reply): Adjust to use ptid_t.
974 (clear_symbol_cache): Declare.
975 * inferiors.c (all_processes): New.
976 (null_ptid, minus_one_ptid): New.
977 (ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_lwp)
978 (ptid_get_tid, ptid_equal, ptid_is_pid): New.
979 (add_thread): Change unsigned long to ptid. Remove gdb_id
981 (thread_id_to_gdb_id, thread_to_gdb_id): Change unsigned long to ptid.
982 (gdb_id_to_thread): Rename to ...
983 (find_thread_pid): ... this. Change unsigned long to ptid.
984 (gdb_id_to_thread_id, find_inferior_id): Change unsigned long to ptid.
985 (loaded_dll, pull_pid_from_list): Adjust.
986 (add_process, remove_process, find_process_pid)
987 (get_thread_process, current_process, initialize_inferiors): New.
988 * target.h (struct thread_resume) <thread>: Change type to ptid_t.
989 (struct target_waitstatus) <related_pid>: Ditto.
990 (struct target_ops) <kill, detach>: Add `pid' argument. Change
992 (struct target_ops) <join>: Add `pid' argument.
993 (struct target_ops) <thread_alive>: Change pid's type to ptid_t.
994 (struct target_ops) <wait>: Add `ptid' field. Change return type
996 (kill_inferior, detach_inferior, join_inferior): Add `pid' argument.
997 (mywait): Add `ptid' argument. Change return type to ptid_t.
998 (target_pid_to_str): Declare.
999 * target.c (set_desired_inferior): Adjust to use ptids.
1000 (mywait): Add new `ptid' argument. Adjust.
1001 (target_pid_to_str): New.
1002 * mem-break.h (free_all_breakpoints): Declare.
1003 * mem-break.c (breakpoints): Delelete.
1004 (set_breakpoint_at, delete_breakpoint, find_breakpoint_at)
1005 (check_mem_read, check_mem_write, delete_all_breakpoints): Adjust
1006 to use per-process breakpoint list.
1007 (free_all_breakpoints): New.
1008 * remote-utils.c (struct sym_cache) <name>: Drop `const'.
1009 (symbol_cache, all_symbols_looked_up): Delete.
1011 (ishex, unpack_varlen_hex, write_ptid, hex_or_minus_one,
1013 (prepare_resume_reply): Change ptid argument's type from unsigned
1014 long to ptid_t. Adjust. Implement W;process and X;process.
1015 (free_sym_cache, clear_symbol_cache): New.
1016 (look_up_one_symbol): Adjust to per-process symbol cache. *
1017 * server.c (cont_thread, general_thread, step_thread): Change type
1020 (multi_process): New.
1021 (last_ptid): Change type to ptid_t.
1022 (struct vstop_notif) <ptid>: Change type to ptid_t.
1023 (queue_stop_reply, push_event): Change `ptid' argument's type to
1025 (discard_queued_stop_replies): Add `pid' argument.
1026 (start_inferior): Adjust to use ptids. Adjust to mywait interface
1027 changes. Don't reference the `attached' global.
1028 (attach_inferior): Adjust to mywait interface changes.
1029 (handle_query): Adjust to use ptids. Parse GDB's qSupported
1030 features. Handle and report "multiprocess+". Handle
1032 (handle_v_cont): Adjust to use ptids. Adjust to mywait interface
1034 (handle_v_kill): New.
1035 (handle_v_stopped): Adjust to use target_pid_to_str.
1036 (handle_v_requests): Allow multiple attaches and runs when
1037 multiprocess extensions are in effect. Handle "vKill".
1038 (myresume): Adjust to use ptids.
1039 (queue_stop_reply_callback): Add `arg' parameter. Handle it.
1040 (handle_status): Adjust to discard_queued_stop_replies interface
1042 (first_thread_of, kill_inferior_callback)
1043 (detach_or_kill_inferior_callback, join_inferiors_callback): New.
1044 (main): Call initialize_inferiors. Adjust to use ptids, killing
1045 and detaching from all inferiors. Handle multiprocess packet
1047 * linux-low.h: Include gdb_proc_service.h.
1048 (struct process_info_private): New.
1049 (struct linux_target_ops) <pid_of>: Use ptid_get_pid.
1050 <lwpid_of>: Use ptid_get_lwp.
1051 (get_lwp_thread): Adjust.
1052 (struct lwp_info): Add `dead' member.
1053 (find_lwp_pid): Declare.
1054 * linux-low.c (thread_db_active): Delete.
1055 (new_inferior): Adjust comment.
1056 (inferior_pid): Delete.
1057 (linux_add_process): New.
1058 (handle_extended_wait): Adjust.
1059 (add_lwp): Change unsigned long to ptid.
1060 (linux_create_inferior): Add process to processes table. Adjust
1061 to use ptids. Don't set new_inferior here.
1062 (linux_attach_lwp): Rename to ...
1063 (linux_attach_lwp_1): ... this. Add `initial' argument. Handle
1064 it. Adjust to use ptids.
1065 (linux_attach_lwp): New.
1066 (linux_attach): Add process to processes table. Don't set
1068 (struct counter): New.
1069 (second_thread_of_pid_p, last_thread_of_process_p): New.
1070 (linux_kill_one_lwp): Add `args' parameter. Handle it. Adjust to
1072 (linux_kill): Add `pid' argument. Handle it. Adjust to multiple
1073 processes. Remove process from process table.
1074 (linux_detach_one_lwp): Add `args' parameter. Handle it. Adjust
1075 to multiple processes.
1076 (any_thread_of): New.
1077 (linux_detach): Add `pid' argument, and handle it. Remove process
1078 from processes table.
1079 (linux_join): Add `pid' argument. Handle it.
1080 (linux_thread_alive): Change unsighed long argument to ptid_t.
1081 Consider dead lwps as not being alive.
1082 (status_pending_p): Rename `dummy' argument to `arg'. Filter out
1083 threads we're not interested in.
1084 (same_lwp, find_lwp_pid): New.
1085 (linux_wait_for_lwp): Change `pid' argument's type from int to
1087 (linux_wait_for_event): Rename to ...
1088 (linux_wait_for_event_1): ... this. Change `pid' argument's type
1089 from int to ptid_t. Adjust.
1090 (linux_wait_for_event): New.
1091 (linux_wait_1): Add `ptid' argument. Change return type to
1092 ptid_t. Adjust. Use last_thread_of_process_p. Remove processes
1093 that exit from the process table.
1094 (linux_wait): Add `ptid' argument. Change return type to ptid_t.
1096 (mark_lwp_dead): New.
1097 (wait_for_sigstop): Adjust to use ptids. If a process exits while
1098 stopping all threads, mark its main lwp as dead.
1099 (linux_set_resume_request, linux_resume_one_thread): Adjust to use
1101 (fetch_register, usr_store_inferior_registers)
1102 (regsets_fetch_inferior_registers)
1103 (regsets_store_inferior_registers, linux_read_memory)
1104 (linux_write_memory): Inline `inferior_pid'.
1105 (linux_look_up_symbols): Adjust to use per-process
1107 (linux_request_interrupt): Adjust to use ptids.
1108 (linux_read_auxv): Inline `inferior_pid'.
1109 (initialize_low): Don't reference thread_db_active.
1110 * gdb_proc_service.h (struct ps_prochandle) <pid>: Remove.
1111 * proc-service.c (ps_lgetregs): Use find_lwp_pid.
1112 (ps_getpid): Return the pid of the current inferior.
1113 * thread-db.c (proc_handle, thread_agent): Delete.
1114 (thread_db_create_event, thread_db_enable_reporting): Adjust to
1116 (find_one_thread): Change argument type to ptid_t. Adjust to
1118 (maybe_attach_thread): Adjust to per-process data and ptids.
1119 (thread_db_find_new_threads): Ditto.
1120 (thread_db_init): Ditto.
1121 * spu-low.c (spu_create_inferior, spu_attach): Add process to
1122 processes table. Adjust to use ptids.
1123 (spu_kill, spu_detach): Adjust interface. Remove process from
1125 (spu_join, spu_thread_alive): Adjust interface.
1126 (spu_wait): Adjust interface. Remove process from processes
1127 table. Adjust to use ptids.
1128 * win32-low.c (current_inferior_tid): Delete.
1129 (current_inferior_ptid): New.
1130 (debug_event_ptid): New.
1131 (thread_rec): Take a ptid. Adjust.
1132 (child_add_thread): Add `pid' argument. Adjust to use ptids.
1133 (child_delete_thread): Ditto.
1134 (do_initial_child_stuff): Add `attached' argument. Add process to
1136 (child_fetch_inferior_registers, child_store_inferior_registers):
1138 (win32_create_inferior): Pass 0 to do_initial_child_stuff.
1139 (win32_attach): Pass 1 to do_initial_child_stuff.
1140 (win32_kill): Adjust interface. Remove process from processes
1142 (win32_detach): Ditto.
1143 (win32_join): Adjust interface.
1144 (win32_thread_alive): Take a ptid.
1145 (win32_resume): Adjust to use ptids.
1146 (get_child_debug_event): Ditto.
1147 (win32_wait): Adjust interface. Remove exiting process from
1150 2009-04-01 Pedro Alves <pedro@codesourcery.com>
1152 Non-stop mode support.
1154 * server.h (non_stop): Declare.
1155 (gdb_client_data, handler_func): Declare.
1156 (delete_file_handler, add_file_handler, start_event_loop):
1158 (handle_serial_event, handle_target_event, push_event)
1159 (putpkt_notif): Declare.
1160 * target.h (enum resume_kind): New.
1161 (struct thread_resume): Replace `step' field by `kind' field.
1162 (TARGET_WNOHANG): Define.
1163 (struct target_ops) <wait>: Add `options' argument.
1164 <supports_non_stop, async, start_non_stop>: New fields.
1165 (target_supports_non_stop, target_async): New.
1166 (start_non_stop): Declare.
1167 (mywait): Add `options' argument.
1168 * target.c (mywait): Add `options' argument. Print child exit
1170 (start_non_stop): New.
1171 * server.c (non_stop, own_buf, mem_buf): New globals.
1172 (struct vstop_notif): New.
1173 (notif_queue): New global.
1174 (queue_stop_reply, push_event, discard_queued_stop_replies)
1175 (send_next_stop_reply): New.
1176 (start_inferior): Adjust to use resume_kind. Adjust to mywait
1178 (attach_inferior): In non-stop mode, don't wait for the target
1180 (handle_general_set): Handle QNonStop.
1181 (handle_query): When handling qC, return the current general
1182 thread, instead of the first thread of the list.
1183 (handle_query): If the backend supports non-stop mode, include
1184 QNonStop+ in the qSupported query response.
1185 (handle_v_cont): Adjust to use resume_kind. Handle resume_stop
1187 (handle_v_attach, handle_v_run): Handle non-stop mode.
1188 (handle_v_stopped): New.
1189 (handle_v_requests): Report support for vCont;t. Handle vStopped.
1190 (myresume): Adjust to use resume_kind. Handle non-stop.
1191 (queue_stop_reply_callback): New.
1192 (handle_status): Handle non-stop mode.
1193 (main): Clear non_stop flag on reconnection. Use the event-loop.
1194 Refactor serial protocol handling from here ...
1195 (process_serial_event): ... to this new function. When GDB
1196 selects any thread, select one here. In non-stop mode, wait until
1197 GDB acks all pending events before exiting.
1198 (handle_serial_event, handle_target_event): New.
1199 * remote-utils.c (remote_open): Install remote_desc in the event
1201 (remote_close): Remove remote_desc from the event loop.
1202 (putpkt_binary): Rename to...
1203 (putpkt_binary_1): ... this. Add `is_notic' argument. Handle it.
1204 (putpkt_binary): New as wrapper around putpkt_binary_1.
1205 (putpkt_notif): New.
1206 (prepare_resume_reply): In non-stop mode, don't change the
1208 * event-loop.c: New.
1209 * Makefile.in (OBJ): Add event-loop.o.
1210 (event-loop.o): New rule.
1212 * linux-low.h (pid_of): Moved here.
1214 (get_lwp_thread): Use lwpid_of.
1215 (struct lwp_info): Delete `lwpid' field. Add `suspended' field.
1216 * linux-low.c (pid_of): Delete.
1217 (inferior_pid): Use lwpid_of.
1218 (linux_event_pipe): New.
1219 (target_is_async_p): New.
1221 (handle_extended_wait): Use lwpid_of.
1222 (add_lwp): Don't set lwpid field.
1223 (linux_attach_lwp): Adjust debug output. Use lwpid_of.
1224 (linux_kill_one_lwp): If killing a running lwp, stop it first.
1225 Use lwpid_of. Adjust to linux_wait_for_event interface changes.
1226 (linux_detach_one_lwp): If detaching from a running lwp, stop it
1227 first. Adjust to linux_wait_for_event interface changes. Use
1229 (linux_detach): Don't delete the main lwp here.
1230 (linux_join): Use my_waitpid. Avoid signal_pid. Use lwpid_of.
1231 (status_pending_p): Don't consider explicitly suspended lwps.
1232 (linux_wait_for_lwp): Take an integer pid instead of a lwp_info
1233 pointer. Add OPTIONS argument. Change return type to int. Use
1234 my_waitpid instead of sleeping. Handle WNOHANG. Use lwpid_of.
1235 (linux_wait_for_event): Take an integer pid instead of a lwp_info
1236 pointer. Add status pointer argument. Return a pid instead of a
1237 status. Use lwpid_of. Adjust to linux_wait_for_lwp interface
1238 changes. In non-stop mode, don't switch to a random thread.
1239 (linux_wait): Rename to...
1240 (linux_wait_1): ... this. Add target_options argument, and handle
1241 it. Adjust to use resume_kind. Use lwpid_of. In non-stop mode,
1242 don't handle the continue thread. Handle TARGET_WNOHANG. Merge
1243 clean exit and signal exit code. Don't stop all threads in
1244 non-stop mode. In all-stop mode, only stop all threads when
1245 reporting a stop to GDB. Handle explicit thread stop requests.
1246 (async_file_flush, async_file_mark): New.
1248 (send_sigstop): Use lwpid_of.
1249 (wait_for_sigstop): Use lwpid_of. Adjust to linux_wait_for_event
1250 interface changes. In non-stop mode, don't switch to a random
1252 (linux_resume_one_lwp): Use lwpid_of.
1253 (linux_continue_one_thread, linux_queue_one_thread): Merge into ...
1254 (linux_resume_one_thread): ... this. Handle resume_stop. In
1255 non-stop mode, don't look for pending flag in all threads.
1256 (resume_status_pending_p): Don't consider explicitly suspended
1258 (my_waitpid): Reimplement. Emulate __WALL.
1259 (linux_request_interrupt, linux_read_offsets, linux_xfer_siginfo):
1261 (sigchld_handler, linux_supports_non_stop, linux_async)
1262 (linux_start_non_stop): New.
1263 (linux_target_ops): Register linux_supports_non_stop, linux_async
1264 and linux_start_non_stop.
1265 (initialize_low): Install SIGCHLD handler.
1266 * thread-db.c (thread_db_create_event, find_one_thread)
1267 (thread_db_get_tls_address): Use lwpid_of.
1268 * win32-low.c (win32_detach): Adjust to use resume_kind.
1269 (win32_wait): Add `options' argument.
1270 * spu-low.c (spu_resume): Adjust to use resume_kind.
1271 (spu_wait): Add `options' argument.
1273 2009-04-01 Pedro Alves <pedro@codesourcery.com>
1275 Decouple target code from remote protocol.
1277 * target.h (enum target_waitkind): New.
1278 (struct target_waitstatus): New.
1279 (struct target_ops) <wait>: Return an unsigned long. Take a
1280 target_waitstatus pointer instead of a char pointer.
1282 * target.c (mywait): Change prototype to return an unsigned long.
1283 Take a target_waitstatus pointer instead of a char pointer. Adjust.
1284 * server.h (thread_from_wait, old_thread_from_wait): Delete
1286 (prepare_resume_reply): Change prototype to take a
1288 * server.c (thread_from_wait, old_thread_from_wait): Delete.
1289 (last_status, last_ptid): New.
1290 (start_inferior): Remove "statusptr" argument. Adjust. Return a
1291 pid instead of a signal.
1292 (attach_inferior): Remove "status" and "signal" parameters.
1294 (handle_query): For qGetTLSAddr, parse the thread id with strtol,
1296 (handle_v_cont, handle_v_attach, handle_v_run, handle_v_kill)
1297 (handle_v_requests, myresume): Remove "status" and "signal"
1299 (handle_status): New.
1300 (main): Delete local `status'. Adjust.
1301 * remote-utils.c: Include target.h.
1302 (prepare_resume_reply): Change prototype to take a
1303 target_waitstatus. Adjust.
1305 * linux-low.c (linux_wait): Adjust to new target_ops->wait
1307 * spu-low.c (spu_wait): Adjust.
1308 * win32-low.c (enum target_waitkind, struct target_waitstatus):
1310 (win32_wait): Adjust.
1312 2009-04-01 Pedro Alves <pedro@codesourcery.com>
1314 * target.h (struct thread_resume): Delete leave_stopped member.
1315 (struct target_ops): Add a `n' argument to the `resume' callback.
1316 * server.c (start_inferior): Adjust.
1317 (handle_v_cont, myresume): Adjust.
1318 * linux-low.c (check_removed_breakpoint): Adjust to resume
1319 interface change, and to removed leave_stopped field.
1320 (resume_ptr): Delete.
1321 (struct thread_resume_array): New.
1322 (linux_set_resume_request): Add new `arg' parameter. Adjust to
1323 resume interface change.
1324 (linux_continue_one_thread, linux_queue_one_thread)
1325 (resume_status_pending_p): Check if the resume field is NULL
1326 instead of checking the leave_stopped member.
1327 (linux_resume): Adjust to the target resume interface change.
1328 * spu-low.c (spu_resume): Adjust to the target resume interface
1330 * win32-low.c (win32_detach, win32_resume): Ditto.
1332 2009-04-01 Pedro Alves <pedro@codesourcery.com>
1334 * linux-low.c (linux_wait_for_event): Don't clear the `stepping'
1336 (wait_for_sigstop): Don't leave a finished single-step SIGTRAP
1338 (linux_continue_one_thread): Only preserve the stepping flag if
1339 there's a pending breakpoint.
1341 2009-03-31 Pedro Alves <pedro@codesourcery.com>
1343 * server.c (main): After the inferior having exited, call
1344 remote_close before exiting gdbserver.
1346 2009-03-25 Thiago Jung Bauermann <bauerman@br.ibm.com>
1348 Fix size of FPSCR in Power 7 processors.
1349 * linux-ppc-low.c (PPC_FEATURE_ARCH_2_05): Remove #define.
1350 (PPC_FEATURE_HAS_DFP): New #define.
1351 (ppc_arch_setup): Check for DFP feature instead of ISA 2.05 to decide on
1354 2009-03-23 Pedro Alves <pedro@codesourcery.com>
1356 * server.c (handle_query) Whitespace and formatting.
1358 2009-03-22 Pedro Alves <pedro@codesourcery.com>
1360 * i387-fp.c, linux-arm-low.c, linux-cris-low.c,
1361 linux-crisv32-low.c, linux-i386-low.c, linux-low.c,
1362 linux-mips-low.c, linux-s390-low.c, linux-sparc-low.c,
1363 linux-x86-64-low.c, linux-xtensa-low.c, proc-service.c,
1364 regcache.c, remote-utils.c, server.c, spu-low.c, target.h,
1365 thread-db.c, win32-low.c, xtensa-xtregs.c, gdbreplay.c,
1366 Makefile.in, configure.ac: Fix whitespace throughout.
1367 * configure: Regenerate.
1369 2009-03-22 Pedro Alves <pedro@codesourcery.com>
1371 * inferiors.c (find_inferior): Make it safe for the callback
1372 function to delete the currently iterated inferior.
1374 2009-03-22 Pedro Alves <pedro@codesourcery.com>
1376 * Makefile.in (linuw_low_h): Move higher.
1377 (thread-db.o): Depend on $(linux_low_h).
1379 2009-03-17 Pedro Alves <pedro@codesourcery.com>
1381 Rename "process" to "lwp" throughout.
1383 * linux-low.c (all_processes): Rename to...
1384 (all_lwps): ... this.
1385 (inferior_pid, handle_extended_wait, get_stop_pc): Adjust.
1386 (add_process): Rename to ...
1387 (add_lwp): ... this. Adjust.
1388 (linux_create_inferior): Adjust.
1389 (linux_attach_lwp): Adjust.
1390 (linux_attach): Adjust.
1391 (linux_kill_one_process): Rename to ...
1392 (linux_kill_one_lwp): ... this. Adjust.
1393 (linux_kill): Adjust.
1394 (linux_detach_one_process): Rename to ...
1395 (linux_detach_one_lwp): ... this. Adjust.
1396 (linux_detach): Adjust.
1397 (check_removed_breakpoint): Adjust.
1398 (status_pending_p): Adjust.
1399 (linux_wait_for_process): Rename to ...
1400 (linux_wait_for_lwp): ... this. Adjust.
1401 (linux_wait_for_event): Adjust.
1402 (send_sigstop): Adjust.
1403 (wait_for_sigstop): Adjust.
1404 (stop_all_processes): Rename to ...
1405 (stop_all_lwps): ... this.
1406 (linux_resume_one_process): Rename to ...
1407 (linux_resume_one_lwp): ... this. Adjust.
1408 (linux_set_resume_request, linux_continue_one_thread)
1409 (linux_queue_one_thread, resume_status_pending_p)
1410 (usr_store_inferior_registers, regsets_store_inferior_registers)
1411 (linux_request_interrupt, linux_read_offsets, linux_xfer_siginfo):
1413 * linux-low.h (get_process): Rename to ...
1414 (get_lwp): ... this. Adjust.
1415 (get_thread_process): Rename to ...
1416 (get_thread_lwp): ... this. Adjust.
1417 (get_process_thread): Rename to ...
1418 (get_lwp_thread): ... this. Adjust.
1419 (struct process_info): Rename to ...
1420 (struct lwp_info): ... this.
1421 (all_processes): Rename to ...
1422 (all_lwps): ... this.
1423 * proc-service.c (ps_lgetregs): Adjust.
1424 * thread-db.c (thread_db_create_event, find_one_thread)
1425 (maybe_attach_thread, thread_db_get_tls_address): Adjust.
1427 2009-03-14 Pedro Alves <pedro@codesourcery.com>
1429 * server.c (handle_query): Handle "qAttached".
1431 2009-03-13 Nathan Sidwell <nathan@codesourcery.com>
1433 * Makefile.in, hostio-errno.c, errno.c, xtensa-xtregs.c: Change to
1434 GPLv3, update license URL.
1436 2009-03-01 Doug Evans <dje@google.com>
1438 * Makefile.in (INCLUDE_CFLAGS): Add -I$(srcdir)/../common.
1439 (server_h): Add gdb_signals.h.
1440 (signals.o): Update.
1441 * server.h (target_signal_from_host,target_signal_to_host_p)
1442 (target_signal_to_host,target_signal_to_name): Moved to gdb_signals.h.
1444 2009-02-14 Pierre Muller <muller@ics.u-strasbg.fr>
1446 * remote-utils.c (getpkt): Also generate remote-debug
1447 information if noack_mode is set.
1449 2009-02-06 Pedro Alves <pedro@codesourcery.com>
1451 * server.c (handle_query): Report qXfer:siginfo:read and
1452 qXfer:siginfo:write as supported and handle them.
1453 * target.h (struct target_ops) <qxfer_siginfo>: New field.
1454 * linux-low.c (linux_xfer_siginfo): New.
1455 (linux_target_ops): Set it.
1457 2009-01-26 Pedro Alves <pedro@codesourcery.com>
1459 * server.c (gdbserver_usage): Mention --remote-debug.
1460 (main): Accept '--remote-debug' switch.
1462 2009-01-18 Doug Evans <dje@google.com>
1464 * regcache.c (new_register_cache): No need to check result of xcalloc.
1465 * server.c (handle_search_memory): Back out calls to xmalloc,
1466 result is checked and error is returned to user upon failure.
1467 (handle_query): Ditto. Add more checks for result of malloc.
1468 (handle_v_cont): Check result of malloc, report error back to
1470 (handle_v_run): Ditto. Call freeargv.
1471 * server.h (freeargv): Declare.
1472 * utils.c (freeargv): New fn.
1474 2009-01-15 Doug Evans <dje@google.com>
1476 * gdbreplay.c (perror_with_name): Make arg const char *.
1477 * server.h (target_signal_to_name): Make return type const char *.
1478 * thread-db.c (thread_db_err_str): Make return type const char *.
1479 * utils.c (perror_with_name): Make arg const char *.
1481 2009-01-14 Pedro Alves <pedro@codesourcery.com>
1483 * win32-low.c (get_child_debug_event): Issue a final DBG_CONTINUE
1484 when handling a EXIT_PROCESS_DEBUG_EVENT.
1486 2009-01-06 Joel Brobecker <brobecker@adacore.com>
1488 * gdbreplay.c (gdbreplay_version): Update copyright year.
1489 * server.c (gdbserver_version): Likewise.
1491 2009-01-05 Doug Evans <dje@google.com>
1493 * linux-low.c (linux_attach_lwp): Add some comments/fixmes.
1494 (handle_extended_wait): Improve comment.
1496 2008-12-13 Doug Evans <dje@google.com>
1498 * utils.c (xmalloc,xcalloc,xstrdup): New fns.
1499 * server.h (ATTR_MALLOC): New macro.
1500 (xmalloc,xcalloc,xstrdup): Declare.
1501 * hostio.c: Replace malloc,calloc,strdup with xmalloc,xcalloc,xstrdup.
1502 * inferiors.c: Ditto.
1503 * linux-low.c: Ditto.
1504 * mem-break.c: Ditto.
1505 * regcache.c: Ditto.
1506 * remote-utils.c: Ditto.
1509 * win32-low.c: Ditto.
1511 2008-12-12 Doug Evans <dje@google.com>
1513 * linux-low.c (linux_wait_for_process): Don't clobber current_inferior
1514 in debugging printf.
1516 * linux-low.c (handle_extended_wait): Simplify, use my_waitpid.
1518 2008-12-09 Doug Evans <dje@google.com>
1520 * linux-low.h (struct process_info): Delete member tid, unused.
1521 * thread-db.c (find_one_thread): Update.
1522 (maybe_attach_thread): Update.
1524 2008-12-02 Pedro Alves <pedro@codesourcery.com>
1526 * target.h (struct target_ops): Add qxfer_osdata member.
1527 * linux-low.c: Include ctype.h and pwd.h and sys/types.h
1529 (linux_qxfer_osdata): New functions.
1530 (linux_target_ops): Register linux_qxfer_osdata as qxfer_osdata
1532 * server.c (handle_query): Handle "qXfer:osdata:read:".
1533 * remote-utils.c (buffer_grow, buffer_free, buffer_init, buffer_finish)
1534 (buffer_xml_printf): New functions.
1535 * server.h (struct buffer): New.
1536 (buffer_grow_str, buffer_grow_str0): New macros.
1537 (buffer_grow, buffer_free, buffer_init, buffer_finish)
1538 (buffer_xml_printf): Declare.
1540 2008-11-24 Doug Evans <dje@google.com>
1542 * Makefile.in (VERSION,DIST,LINT,LINTFLAGS): Delete, unused.
1544 2008-11-24 Daniel Jacobowitz <dan@codesourcery.com>
1546 * server.c (handle_v_run): Always use the supplied argument list.
1548 2008-11-19 Bob Wilson <bob.wilson@acm.org>
1550 * xtensa-xtregs.c (XTENSA_ELF_XTREG_SIZE): Change to 4.
1551 (xtensa_regmap_table): Add entry for scompare1.
1553 2008-11-18 Thiago Jung Bauermann <bauerman@br.ibm.com>
1555 * Makefile.in (powerpc-isa205-32l.o, powerpc-isa205-32l.c,
1556 powerpc-isa205-altivec32l.o, powerpc-isa205-altivec32l.c,
1557 powerpc-isa205-vsx32l.o, powerpc-isa205-vsx32l.c,
1558 powerpc-isa205-64l.o, powerpc-isa205-64l.c,
1559 powerpc-isa205-altivec64l.o, powerpc-isa205-altivec64l.c,
1560 powerpc-isa205-vsx64l.o, powerpc-isa205-vsx64l.c): New targets.
1561 * configure.srv (powerpc*-*-linux*): Add ISA 2.05 object files and
1562 XML target descriptions.
1563 * linux-ppc-low.c (ppc_arch_setup): Init registers with 64-bit FPSCR
1564 when inferior is running on an ISA 2.05 or later processor. Add
1565 special case to return offset for full 64-bit slot of FPSCR when
1568 2008-11-14 Daniel Gutson <dgutson@codesourcery.com>
1570 * Makefile.in (SFILES, clean): Added sparc64 files.
1571 (reg-sparc64.o, reg-sparc64.c): New.
1572 * configure.srv (sparc*-*-linux*): New configuration.
1573 * linux-low.c (regsets_fetch_inferior_registers): Swap ptrace
1574 syscall arguments for SPARC.
1575 (regsets_store_inferior_registers): Likewise.
1576 * linux-sparc-low.c: New file.
1578 2008-10-21 Doug Evans <dje@google.com>
1580 * Makefile.in (BFD_DIR,BFD,BFD_SRC,BFD_CFLAGS): Delete.
1581 (READLINE_DIR,READLINE_DEP): Delete.
1582 (INTERNAL_CFLAGS): Update.
1583 (LINTFLAGS): Update.
1585 2008-10-10 Pedro Alves <pedro@codesourcery.com>
1587 * server.c (handle_v_run): If GDB didn't specify an argv, use the
1588 whole argv from the last run, not just argv[0].
1590 2008-09-08 Pedro Alves <pedro@codesourcery.com>
1592 * regcache.c (new_register_cache): Return NULL if the register
1593 cache size isn't known yet.
1594 (free_register_cache): Avoid dereferencing a NULL regcache.
1596 2008-09-04 Daniel Jacobowitz <dan@codesourcery.com>
1598 * configure.srv: Merge MIPS and MIPS64.
1600 2008-08-24 Maciej W. Rozycki <macro@linux-mips.org>
1602 * Makefile.in (uninstall): Apply $(EXEEXT) too.
1604 2008-08-18 Luis Machado <luisgpm@br.ibm.com>
1606 * Makefile.in: Add required vsx dependencies.
1608 * linux-ppc-low: Define PPC_FEATURE_HAS_VSX.
1609 Declare init_registers_powerpc_vsx32l.
1610 Declare init_registers_powerpc_vsx64l.
1611 Define PTRACE_GETVSXREGS and PTRACE_SETVSXREGS.
1612 (ppc_arch_setup): Check for VSX in hwcap.
1613 (ppc_fill_vsxregset): New function.
1614 (ppc_store_vsxregset): New function.
1615 Add new VSX entry in regset_info target_regsets.
1617 * configure.srv: Add new VSX dependencies.
1619 2008-08-12 Pedro Alves <pedro@codesourcery.com>
1621 * remote-utils.c (noack_mode, transport_is_reliable): New globals.
1622 (remote_open): Set or clear transport_is_reliable.
1623 (putpkt_binary): Don't expect acks in noack mode.
1624 (getpkt): Don't send ack/nac in noack mode.
1625 * server.c (handle_general_set): Handle QStartNoAckMode.
1626 (handle_query): If connected by tcp pass QStartNoAckMode+ in
1628 (main): Reset noack_mode on every connection.
1629 * server.h (noack_mode): Declare.
1631 2008-08-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1633 * Makefile.in (GDBREPLAY_OBS): New variable.
1634 (gdbreplay$(EXEEXT)): Use it to avoid unportable $^.
1636 2008-08-05 Ulrich Weigand <uweigand@de.ibm.com>
1637 Daniel Jacobowitz <dan@codesourcery.com>
1639 * linux-low.c (linux_resume_one_process): Ignore ESRCH.
1640 (usr_store_inferior_registers): Likewise.
1641 (regsets_store_inferior_registers): Likewise.
1643 2008-07-31 Rolf Jansen <rj@surtec.com>
1644 Pedro Alves <pedro@codesourcery.com>
1646 * configure.ac: Check for memmem declaration.
1647 * server.c [HAVE_MALLOC_H]: Include malloc.h.
1648 (disable_packet_vCont, disable_packet_Tthread, disable_packet_qC)
1649 (disable_packet_qfThreadInfo): Unconditionally compile.
1650 * server.h [!HAVE_DECL_MEMMEM]: Declare memmem.
1651 * configure, config.in: Regenerate.
1653 2008-07-28 Doug Kwan <dougkwan@google.com>
1655 * linux-low.c (sys/dir.h, sys/user.h): Remove includes.
1656 (linux_write_memory): Remove declaration of errno.
1658 2008-07-12 Ulrich Weigand <uweigand@de.ibm.com>
1660 * linux-low.c (handle_extended_wait): Do not use "status"
1661 variable uninitialized.
1663 2008-07-07 Pedro Alves <pedro@codesourcery.com>
1665 * server.c (handle_v_attach): Inhibit reporting dll changes.
1667 2008-06-27 Pedro Alves <pedro@codesourcery.com>
1669 * remote-utils.c (prepare_resume_reply): If requested, don't
1670 output "thread:TID" in the T stop reply.
1672 * server.c (disable_packet_vCont, disable_packet_Tthread)
1673 (disable_packet_qC, disable_packet_qfThreadInfo): New globals.
1674 (handle_query): If requested, disable support for qC, qfThreadInfo
1676 (handle_v_requests): If requested, disable support for vCont.
1677 (gdbserver_show_disableable): New.
1678 (main): Handle --disable-packet and --disable-packet=LIST.
1680 * server.h (disable_packet_vCont, disable_packet_Tthread)
1681 (disable_packet_qC, disable_packet_qfThreadInfo): Declare.
1683 2008-06-20 Carlos O'Donell <carlos@codesourcery.com>
1685 * server.c (gdbserver_usage): Mention --version.
1687 2008-06-06 Daniel Jacobowitz <dan@codesourcery.com>
1689 * Makefile.in (gdbreplay.o): New rule.
1691 2008-06-06 Joseph Myers <joseph@codesourcery.com>
1693 * gdbreplay.c (gdbreplay_version): Say gdbreplay in version
1694 message, not gdbserver.
1696 2008-06-05 Vladimir Prus <vladimir@codesourcery.com>
1697 Nathan Sidwell <nathan@codesourcery.com>
1698 Joseph Myers <joseph@codesourcery.com>
1700 * acinclude.m4: Include ../../config/acx.m4.
1701 * configure.ac: Use ACX_PKGVERSION and ACX_BUGURL.
1702 * configure, config.in: Regenerate.
1703 * Makefile.in (gdbreplay$(EXEEXT)): Add version.o.
1704 * server.c (gdbserver_version): Print PKGVERSION.
1705 (gdbsrever_usage): Add stream parameter. Print REPORT_BUGS_TO.
1706 (main): Adjust gdbserver_usage calls.
1707 * gdbreplay.c (version, host_name): Add declarations.
1708 (gdbreplay_version, gdbreplay_usage): New.
1709 (main): Accept --version and --help options.
1711 2008-06-04 Daniel Jacobowitz <dan@codesourcery.com>
1713 * linux-arm-low.c (thumb_breakpoint, thumb_breakpoint_len): New.
1714 (arm_breakpoint_at): Handle Thumb.
1715 (the_low_target): Add comment.
1717 2008-05-29 Ulrich Weigand <uweigand@de.ibm.com>
1719 * linux-ppc-low.c (ppc_collect_ptrace_register): Clear buffer.
1721 2008-05-09 Doug Evans <dje@google.com>
1723 * server.h (decode_search_memory_packet): Declare.
1724 * remote-utils.c (decode_search_memory_packet): New fn.
1725 * server.c (handle_search_memory_1): New fn.
1726 (handle_search_memory): New fn.
1727 (handle_query): Process qSearch:memory packets.
1729 2008-05-08 Ulrich Weigand <uweigand@de.ibm.com>
1731 * regcache.c (registers_length): Remove.
1732 (set_register_cache): Verify that PBUFSIZ is large enough to hold a
1733 full register packet.
1734 * regcache.h (registers_length): Remove prototype.
1735 * server.h (PBUFSIZ): Define to 16384.
1737 2008-05-03 Ulrich Weigand <uweigand@de.ibm.com>
1739 * configure.srv (powerpc*-*-linux*): Set srv_regobj to
1740 powerpc-32l.o, powerpc-altivec32l.o, powerpc-e500l.o,
1741 powerpc-64l.o, and powerpc-altivec64l.o.
1742 Remove rs6000/powerpc-32.xml, rs6000/powerpc-64.xml, and
1743 rs6000/powerpc-e500.xml; add rs6000/powerpc-32l.xml,
1744 rs6000/powerpc-altivec32l.xml, rs6000/powerpc-e500l.xml,
1745 rs6000/powerpc-64l.xml, rs6000/powerpc-altivec64l.xml,
1746 rs6000/power-linux.xml, and rs6000/power64-linux.xml
1749 * Makefile.in (reg-ppc.o, reg-ppc.c): Remove, replace by ...
1750 (powerpc-32l.o, powerpc-32l.c): ... these new rules.
1751 (powerpc-32.o, powerpc-32.c): Remove, replace by ...
1752 (powerpc-altivec32l.o, powerpc-altivec32l.c): ... these new rules.
1753 (powerpc-e500.o, powerpc-e500.c): Remove, replace by ...
1754 (powerpc-e500l.o, powerpc-e500l.c): ... these new rules.
1755 (reg-ppc64.o, reg-ppc64.c): Remove, replace by ...
1756 (powerpc-64l.o, powerpc-64l.c): ... these new rules.
1757 (powerpc-64.o, powerpc-64.c): Remove, replace by ...
1758 (powerpc-altivec64l.o, powerpc-altivec64l.c): ... these new rules.
1761 * linux-ppc-low.c (init_registers_ppc): Remove, replace by ...
1762 (init_registers_powerpc_32l): ... this new prototype.
1763 (init_registers_powerpc_32): Remove, replace by ...
1764 (init_registers_powerpc_altivec32l): ... this new prototype.
1765 (init_registers_powerpc_e500): Remove, replace by ...
1766 (init_registers_powerpc_e500l): ... this new prototype.
1767 (init_registers_ppc64): Remove, replace by ...
1768 (init_registers_powerpc_64l): ... this new prototype.
1769 (init_registers_powerpc_64): Remove, replace by ...
1770 (init_registers_powerpc_altivec64l): ... this new prototype.
1771 (ppc_num_regs): Set to 73.
1772 (PT_ORIG_R3, PT_TRAP): Define if necessary.
1773 (ppc_regmap, ppc_regmap_e500): Add values for orig_r3 and trap.
1774 (ppc_cannot_store_register): Handle orig_r3 and trap.
1775 (ppc_arch_setup): Update init_registers_... calls.
1776 (ppc_fill_gregset): Handle orig_r3 and trap.
1778 * inferiors.c (clear_inferiors): Reset current_inferior.
1780 2008-04-23 Paolo Bonzini <bonzini@gnu.org>
1782 * acinclude.m4: Add override.m4.
1783 * configure: Regenerate.
1785 2008-04-21 Ulrich Weigand <uweigand@de.ibm.com>
1787 * linux-ppc-low.c (ppc_arch_setup): Reset ppc_hwcap after the
1788 initial call to init_register_ppc64.
1790 2008-04-21 Ulrich Weigand <uweigand@de.ibm.com>
1792 * configure.srv (powerpc64-*-linux*, powerpc-*-linux*): Merge into single
1793 powerpc*-*-linux* case.
1794 (s390-*-linux*, s390x-*-linux*): Merge into single s390*-*-linux* case.
1796 2008-04-17 Ulrich Weigand <uweigand@de.ibm.com>
1798 * configure.srv [powerpc64-*-linux*]: Remove powerpc-e500.o from
1799 srv_regobj. Remove rs6000/powerpc-e500.xml and rs6000/power-spe.xml
1801 * linux-ppc-low.c: Include <elf.h>.
1802 (PPC_FEATURE_HAS_ALTIVEC, PPC_FEATURE_HAS_SPE): Define.
1803 (ppc_hwcap): New global variable.
1804 (ppc_regmap): Remove __SPE__ #ifdef sections.
1805 (ppc_regmap_e500): New global variable.
1806 (ppc_cannot_store_register): Update __SPE__ special case.
1807 (ppc_get_hwcap): New function.
1808 (ppc_arch_setup): Use it to determine whether inferior supports
1809 AltiVec or SPE registers. Set the_low_target.regmap if appropriate.
1810 (ppc_fill_vrregset, ppc_store_vrregset): Define unconditionally.
1811 Do not access registers if target does not support AltiVec.
1812 (ppc_fill_evrregset, ppc_store_evrregset): Define unconditionally.
1813 Do not access registers if target does not support SPE.
1814 (target_regsets): Unconditionally include AltiVec and SPE regsets.
1816 2008-04-17 Daniel Jacobowitz <dan@codesourcery.com>
1818 * linux-low.c (disabled_regsets, num_regsets): New.
1819 (use_regsets_p): Delete.
1820 (linux_wait_for_process): Clear disabled_regsets.
1821 (regsets_fetch_inferior_registers): Check and set it.
1822 (regsets_store_inferior_registers): Likewise.
1823 (linux_fetch_registers, linux_store_registers): Do not use
1825 (initialize_low): Allocate disabled_regsets.
1827 2008-04-14 Daniel Jacobowitz <dan@codesourcery.com>
1829 * Makefile.in (LIBOBJS): New.
1831 (memmem.o): New rule.
1832 * configure.ac: Use AC_CONFIG_LIBOBJ_DIR and check for memmem.
1833 * configure: Regenerated.
1835 2008-04-04 Ulrich Weigand <uweigand@de.ibm.com>
1837 * server.c (handle_query): Never return "unsupported" for
1838 qXfer:features:read queries.
1840 2008-03-27 Ulrich Weigand <uweigand@de.ibm.com>
1842 * server.c (get_features_xml): Fix inverted condition.
1843 (handle_query): Always support qXfer:feature:read.
1845 2008-03-10 Daniel Jacobowitz <dan@codesourcery.com>
1847 * server.c (wrapper_argv): New.
1848 (start_inferior): Handle wrapper_argv. If set, expect an extra
1850 (gdbserver_usage): Document --wrapper.
1851 (main): Parse --wrapper.
1853 2008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
1855 * configure.srv [powerpc64-*-linux*]: Add all files mentioned for
1856 powerpc-*-linux* to srv_regobj and reg_xmlfiles.
1857 * linux-ppc-low.c (ppc_get_pc): Support bi-arch operation.
1858 (ppc_set_pc): Likewise.
1859 (ppc_arch_setup): New function.
1860 (ppc_fill_gregset): Call ppc_collect_ptrace_register instead
1861 of collect_register.
1862 (the_low_target): Use ppc_arch_setup as arch_setup initializer.
1864 2008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
1866 * configure.srv [powerpc64-*-linux*]: Use linux-ppc-low.o
1867 instead of linux-ppc64-low.o.
1868 * linux-ppc64-low.c: Remove file.
1869 * Makefile.in (SFILES): Remove linux-ppc64-low.c.
1870 (linux-ppc64-low.o): Remove rule.
1872 * linux-ppc-low.c (init_registers_ppc64): Add prototype.
1873 (init_registers_powerpc_64): Likewise.
1874 (ppc_regmap): Conditionally define depending on __powerpc64__.
1875 (ppc_cannot_store_register): Do not special-case "fpscr" when
1876 compiled on __powerpc64__.
1877 (ppc_collect_ptrace_register): New function.
1878 (ppc_supply_ptrace_register): New function.
1879 (ppc_breakpoint): Change type to "unsigned int".
1880 (ppc_breakpoint_at): Change type of "insn" to "unsigned int".
1881 (the_low_target): Conditionally provide initializers for the
1882 arch_setup member depending on __powerpc64__. Install
1883 collect_ptrace_register and supply_ptrace_register members.
1885 2008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
1887 * regcache.h (gdbserver_xmltarget): Add extern declaration.
1888 * server.c (gdbserver_xmltarget): Define.
1889 (get_features_xml): Use it to replace "target.xml" and arch_string.
1891 * configure.srv: Remove srv_xmltarget. Add XML files that were
1892 mentioned there to srv_xmlfiles instead. Remove conditional tests
1893 on gdb_cv_arm_iwmmxt, gdb_cv_ppc_altivec, gdb_cv_ppc_spe; set
1894 srv_xmlfiles and srv_regobj to include all possible choices.
1895 * configure.ac (srv_xmltarget): Remove.
1896 (srv_xmlfiles): Do not add "target.xml".
1897 (gdb_cv_arm_iwmmxt, gdb_cv_ppc_altivec, gdb_cv_ppc_spe): Remove
1898 checks for supplementary target information.
1899 * configure: Regenerate.
1900 * Makefile.in (XML_TARGET): Remove.
1901 (target.xml): Remove rule.
1902 (clean): Do not clean up target.xml.
1903 (.PRECIOUS): Do not mention target.xml.
1905 * target.h (struct target_ops): Remove arch_string member.
1906 * linux-low.c (linux_arch_string): Remove.
1907 (linux_target_ops): Remove arch_string initializer.
1908 * linux-low.h (struct linux_target_ops): Remove arch_string member.
1909 * linux-i386-low.c (the_low_target): Remove arch_string initializer.
1910 * linux-x86-64-low.c (the_low_target): Remove arch_string initializer.
1911 * spu-low.c (spu_arch_string): Remove.
1912 (spu_target_ops): Remove arch_string initializer.
1913 * win32-low.c (win32_arch_string): Remove.
1914 (win32_target_ops): Remove arch_string initializer.
1915 * win32-low.h (struct win32_target_ops): Remove arch_string member.
1916 * win32-arm-low.c (the_low_target): Remove arch_string initializer.
1917 * win32-i368-low.c (the_low_target): Remove arch_string initializer.
1919 2008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
1921 * linux-low.h (struct linux_target_ops): Replace left_pad_xfer field
1922 by collect_ptrace_register and supply_ptrace_register hooks.
1923 * linux-low.c (fetch_register): Use supply_ptrace_register callback
1924 instead of checking for the_low_target.left_pad_xfer.
1925 (usr_store_inferior_registers): Use collect_ptrace_register callback
1926 instead of checking for the_low_target.left_pad_xfer.
1928 * linux-s390-low.c (s390_collect_ptrace_register): New function.
1929 (s390_supply_ptrace_register): Likewise.
1930 (s390_fill_gregset): Call s390_collect_ptrace_register.
1931 (the_low_target): Update.
1933 * linux-ppc64-low.c (ppc_collect_ptrace_register): New function.
1934 (ppc_supply_ptrace_register): Likewise.
1935 (the_low_target): Update.
1937 * linux-i386-low.c (the_low_target): Update.
1938 * linux-x86-64-low.c (the_low_target): Update.
1940 2008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
1942 * configure.srv [s390x-*-linux*]: Set srv_regobj to include both
1943 reg-s390.o and reg-s390x.o.
1945 * linux-low.c (new_inferior): New global variable.
1946 (linux_create_inferior, linux_attach): Set it.
1947 (linux_wait_for_process): Call the_low_target.arch_setup after the
1948 target has stopped for the first time.
1949 (initialize_low): Do not call the_low_target.arch_setup.
1951 * linux-s390-low.c (s390_get_pc): Support bi-arch operation.
1952 (s390_set_pc): Likewise.
1953 (s390_arch_setup): New function.
1954 (the_low_target): Use s390_arch_setup as arch_setup routine.
1956 * regcache.c (realloc_register_cache): New function.
1957 (set_register_cache): Call it for each existing regcache.
1959 2008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
1961 * server.h (init_registers): Remove prototype.
1963 * linux-low.h (struct linux_target_ops): Add arch_setup field.
1964 * linux-low.c (initialize_low): Call the_low_target.arch_setup ()
1965 instead of init_registers ().
1966 * linux-arm-low.c (init_registers_arm): Add prototype.
1967 (init_registers_arm_with_iwmmxt): Likewise.
1968 (the_low_target): Add initializer for arch_setup field.
1969 * linux-cris-low.c (init_registers_cris): Add prototype.
1970 (the_low_target): Add initializer for arch_setup field.
1971 * linux-crisv32-low.c (init_registers_crisv32): Add prototype.
1972 (the_low_target): Add initializer for arch_setup field.
1973 * linux-i386-low.c (init_registers_i386_linux): Add prototype.
1974 (the_low_target): Add initializer for arch_setup field.
1975 * linux-ia64-low.c (init_registers_ia64): Add prototype.
1976 (the_low_target): Add initializer for arch_setup field.
1977 * linux-m32r-low.c (init_registers_m32r): Add prototype.
1978 (the_low_target): Add initializer for arch_setup field.
1979 * linux-m68k-low.c (init_registers_m68k): Add prototype.
1980 (the_low_target): Add initializer for arch_setup field.
1981 * linux-mips-low.c (init_registers_mips_linux): Add prototype.
1982 (init_registers_mips64_linux): Likewise.
1983 (the_low_target): Add initializer for arch_setup field.
1984 * linux-ppc-low.c (init_registers_ppc): Add prototype.
1985 (init_registers_powerpc_32, init_registers_powerpc_e500): Likewise.
1986 (the_low_target): Add initializer for arch_setup field.
1987 * linux-ppc64-low.c (init_registers_ppc64): Add prototype.
1988 (init_registers_powerpc_64): Likewise.
1989 (the_low_target): Add initializer for arch_setup field.
1990 * linux-s390-low.c (init_registers_s390): Add prototype.
1991 (init_registers_s390x): Likewise.
1992 (the_low_target): Add initializer for arch_setup field.
1993 * linux-sh-low.c (init_registers_sh): Add prototype.
1994 (the_low_target): Add initializer for arch_setup field.
1995 * linux-x86-64-low.c (init_registers_x86_64_linux): Add prototype.
1996 (the_low_target): Add initializer for arch_setup field.
1997 * linux-xtensa-low.c (init_registers_xtensa): Add prototype.
1998 (the_low_target): Add initializer for arch_setup field.
2000 * win32-low.h (struct win32_target_ops): Add arch_setup field.
2001 * win32-low.c (initialize_low): Call the_low_target.arch_setup ()
2002 instead of init_registers ().
2003 * win32-arm-low.c (init_registers_arm): Add prototype.
2004 (the_low_target): Add initializer for arch_setup field.
2005 * win32-i386-low.c (init_registers_i386): Add prototype.
2006 (the_low_target): Add initializer for arch_setup field.
2008 * spu-low.c (init_registers_spu): Add prototype.
2009 (initialize_low): Call initialie_registers_spu () instead of
2010 initialize_registers ().
2012 2008-02-19 Pedro Alves <pedro@codesourcery.com>
2014 * server.c (handle_v_requests): When handling the vRun and vAttach
2015 packets, if already debugging a process, don't kill it. Return an
2018 2008-02-17 Daniel Jacobowitz <dan@codesourcery.com>
2020 * server.c (handle_query): Correct length check.
2022 2008-02-14 Pedro Alves <pedro_alves@portugalmail.pt>
2024 * win32-low.c (do_initial_child_stuff): Add process handle
2025 parameter. Set current_process_handle and current_process_id from the
2026 parameters. Clear globals.
2027 (win32_create_inferior): Don't set current_process_handle and
2028 current_process_id here. Instead pass them on the call to
2029 do_initial_child_stuff.
2030 (win32_attach): Likewise.
2031 (win32_clear_inferiors): New.
2032 (win32_kill): Don't close the current process handle or the
2033 current thread handle here. Instead call win32_clear_inferiors.
2034 (win32_detach): Don't open a new handle to the process. Call
2035 win32_clear_inferiors.
2036 (win32_join): Don't rely on current_process_handle; open a new
2037 handle using the process id.
2038 (win32_wait): Call win32_clear_inferiors when the inferior process
2041 2008-02-14 Daniel Jacobowitz <dan@codesourcery.com>
2043 * server.c (monitor_show_help): Add "exit".
2045 2008-02-11 Maxim Grigoriev <maxim2405@gmail.com>
2047 * Makefile.in (SFILES): Add linux-xtensa-low.c.
2048 (clean): Add reg-xtensa.c.
2049 (linux-xtensa-low.o, reg-xtensa.o, reg-xtensa.c): New dependencies.
2050 * configure.srv (xtensa*-*-linux*) New target.
2051 * linux-xtensa-low.c: New.
2052 * xtensa-xtregs.c: New.
2054 2008-02-01 Pedro Alves <pedro_alves@portugalmail.pt>
2056 * hostio.c: Don't include errno.h.
2057 (errno_to_fileio_errno): Move to hostio-errno.
2058 * hostio.c: (hostio_error): Remove the error parameter. Defer the
2059 error number outputting to the target->hostio_last_error callback.
2060 (hostio_packet_error): Use FILEIO_EINVAL directly.
2061 (handle_open, handle_pread, hostio_error, handle_unlink): Update
2062 calls to hostio_error.
2063 * hostio-errno.c: New.
2064 * server.h (hostio_last_error_from_errno): Declare.
2065 * target.h (target_ops): Add hostio_last_error member.
2066 * linux-low.c (linux_target_op): Register hostio_last_error_from_errno
2067 as hostio_last_error handler.
2068 * spu-low.c (spu_target_ops): Likewise.
2069 * win32-low.c [_WIN32_WCE] (win32_error_to_fileio_error)
2070 (wince_hostio_last_error): New functions.
2071 (win32_target_ops) [_WIN32_WCE]: Register wince_hostio_last_error
2072 as hostio_last_error handler.
2073 (win32_target_ops) [!_WIN32_WCE]: Register
2074 hostio_last_error_from_errno as hostio_last_error handler.
2075 * Makefile.in (SFILES): Add hostio.c and hostio-errno.c.
2076 (hostio-errno.o): New rule.
2077 * configure.ac (GDBSERVER_DEPFILES): Add $srv_hostio_err_objs.
2078 * configure.srv (srv_hostio_err_objs): New variable. Default to
2080 (arm*-*-mingw32ce*): Set srv_hostio_err_objs to "".
2081 * configure: Regenerate.
2083 2008-01-29 Daniel Jacobowitz <dan@codesourcery.com>
2085 * linux-low.c (linux_attach_lwp): Do not _exit after errors.
2086 (linux_kill, linux_detach): Clean up the process list.
2087 * remote-utils.c (remote_open): Improve port number parsing.
2088 (putpkt_binary, input_interrupt): Only send interrupts if the target
2090 * server.c (extended_protocol): Make static.
2091 (attached): Define earlier.
2092 (exit_requested, response_needed, program_argv): New variables.
2093 (target_running): New.
2094 (start_inferior): Clear attached here.
2095 (attach_inferior): Set attached here.
2096 (require_running): Define.
2097 (handle_query): Use require_running and target_running. Implement
2099 (handle_v_attach, handle_v_run): New.
2100 (handle_v_requests): Use require_running. Handle vAttach and vRun.
2101 (gdbserver_usage): Update.
2102 (main): Redo argument parsing. Handle --debug and --multi. Handle
2103 --attach along with other options or after the port. Save
2104 program_argv. Support no initial program. Resynchronize
2105 communication with GDB after an error. Handle "monitor exit".
2106 Use require_running and target_running. Always allow the extended
2107 protocol. Do not error out for Hc0 or Hc-1. Do not automatically
2108 restart in extended mode.
2109 * README: Refer to the GDB manual. Update --attach usage.
2111 2007-12-20 Andreas Schwab <schwab@suse.de>
2113 * linux-low.c (STACK_SIZE): Define.
2114 (linux_tracefork_child): Use it. Use __clone2 on ia64.
2115 (linux_test_for_tracefork): Likewise.
2117 2007-12-18 Daniel Jacobowitz <dan@codesourcery.com>
2119 * linux-low.c (linux_wait_for_event): Update messages. Do not
2120 reinsert auto-delete breakpoints.
2121 * mem-break.c (struct breakpoint): Change return type of handler to
2123 (set_breakpoint_at): Update handler type.
2124 (reinsert_breakpoint_handler): Return 1 instead of calling
2126 (reinsert_breakpoint_by_bp): Check for the original breakpoint before
2128 (check_breakpoints): Delete auto-delete breakpoints and return 2.
2129 * mem-break.h (set_breakpoint_at): Update handler type.
2130 * thread-db.c (thread_db_create_event, thread_db_create_event): Update.
2131 * win32-low.c (auto_delete_breakpoint): New.
2132 (get_child_debug_event): Use it.
2134 2007-12-16 Daniel Jacobowitz <dan@codesourcery.com>
2136 * configure.ac: Check for pread and pwrite.
2137 * hostio.c (handle_pread): Fall back to lseek and read.
2138 (handle_pwrite): Fall back to lseek and write.
2139 * config.in, configure: Regenerated.
2141 2007-12-07 Daniel Jacobowitz <dan@codesourcery.com>
2143 * server.c (myresume): Add own_buf argument.
2144 (main): Update calls.
2146 2007-12-06 Daniel Jacobowitz <dan@codesourcery.com>
2148 * linux-low.c (linux_wait, linux_resume): Do not handle async I/O.
2149 * remote-utils.c (remote_open): Do not call disable_async_io.
2150 (block_async_io): Delete.
2151 (unblock_async_io): Make static.
2152 (initialize_async_io): New.
2153 * server.c (handle_v_cont): Handle async I/O here.
2154 (myresume): Likewise. Move other common resume tasks here...
2155 (main): ... from here. Call initialize_async_io. Disable async
2156 I/O before the main loop.
2157 * server.h (initialize_async_io): Declare.
2158 (block_async_io, unblock_async_io): Delete prototypes.
2159 * spu-low.c (spu_resume, spu_wait): Do not handle async I/O here.
2161 2007-12-06 Mick Davis <mickd@goanna.iinet.net.au>
2163 * remote-utils.c (readchar): Allow binary data in received messages.
2165 2007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
2167 * win32-low.c (attaching): New global.
2168 (win32_create_inferior): Clear the `attaching' global.
2169 (win32_attach): Set the `attaching' global.
2170 (get_child_debug_event) [_WIN32_WCE]: Stop the inferior when
2171 attaching. Only set a breakpoint at the entry point if not
2174 2007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
2176 * server.c (main): Don't report dll events on the initial
2177 connection on attaches.
2179 2007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
2181 * server.c (main): Relax numerical bases supported for the pid of
2182 the --attach command line argument.
2184 2007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
2186 * win32-low.c (win32_attach): Call OpenProcess before
2187 DebugActiveProcess, not after. Add last error output to error
2190 2007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
2192 * win32-low.c (win32_get_thread_context)
2193 (win32_set_thread_context): New functions.
2194 (thread_rec): Use win32_get_thread_context.
2195 (continue_one_thread, win32_resume): Use win32_set_thread_context.
2196 * win32-low.h (win32_thread_info) [_WIN32_WCE]: Add `base_context'
2199 2007-12-03 Leo Zayas
2200 Pedro Alves <pedro_alves@portugalmail.pt>
2202 * win32-low.c (soft_interrupt_requested, faked_breakpoint): New
2204 (child_add_thread): Minor cleanup.
2205 (child_continue): Resume artificially suspended threads before
2206 calling ContinueDebugEvent.
2207 (suspend_one_thread): New.
2208 (fake_breakpoint_event): New.
2209 (get_child_debug_event): Change return type to int. Check here if
2210 gdb sent an interrupt request. If a soft interrupt was requested,
2211 fake a breakpoint event. Return 0 if there is no event to handle,
2213 (win32_wait): Don't check here if gdb sent an interrupt request.
2214 Ensure there is a valid event to handle.
2215 (win32_request_interrupt): Add soft interruption method as last
2218 2007-12-03 Leo Zayas
2219 Pedro Alves <pedro_alves@portugalmail.pt>
2221 * win32-low.h (win32_thread_info): Add descriptions to the
2222 structure members. Replace `suspend_count' counter by a
2224 * win32-low.c (thread_rec): Update condition of when to get the
2225 context from the inferior. Rely on ContextFlags being set if it
2226 has already been retrieved. Only suspend the inferior thread if
2227 we haven't already. Warn if that fails.
2228 (continue_one_thread): s/suspend_count/suspended/. Only call
2229 ResumeThread once. Warn if that fails.
2231 2007-12-02 Pedro Alves <pedro_alves@portugalmail.pt>
2233 * win32-low.c (win32_wait): Don't read from the inferior when it
2236 2007-12-02 Pedro Alves <pedro_alves@portugalmail.pt>
2238 * Makefile.in (win32_low_h): New variable.
2239 (win32-low.o): Add dependency on $(win32_low_h).
2240 (win32-arm-low.o, win32-i386-low.o): New rules.
2242 2007-11-30 Daniel Jacobowitz <dan@codesourcery.com>
2244 * hostio.c: Correct copyright year.
2246 2007-11-30 Daniel Jacobowitz <dan@codesourcery.com>
2248 * Makefile.in (OBS): Add hostio.o.
2249 (hostio.o): New rule.
2250 * server.h (handle_vFile): Declare.
2251 * hostio.c: New file.
2252 * server.c (handle_v_requests): Take packet_len and new_packet_len
2253 for binary packets. Call handle_vFile.
2254 (main): Update call to handle_v_requests.
2256 2007-11-05 Daniel Jacobowitz <dan@codesourcery.com>
2258 * linux-low.c: Include <sched.h>.
2260 2007-11-01 Daniel Jacobowitz <dan@codesourcery.com>
2262 * linux-low.c (linux_tracefork_grandchild): New.
2263 (linux_tracefork_child): Use clone.
2264 (linux_test_for_tracefork): Use clone; allocate and free a stack.
2266 2007-10-31 Joel Brobecker <brobecker@adacore.com>
2268 * Makefile.in: Use $(SHELL) instead of "sh" to call regdat.sh.
2270 2007-10-24 Daniel Jacobowitz <dan@codesourcery.com>
2272 * linux-low.c (handle_extended_wait): Handle unexpected signals.
2274 2007-10-23 Daniel Jacobowitz <dan@codesourcery.com>
2276 * inferiors.c (change_inferior_id): Delete.
2277 (add_pid_to_list, pull_pid_from_list): New.
2278 * linux-low.c (PTRACE_SETOPTIONS, PTRACE_GETEVENTMSG)
2279 (PTRACE_O_TRACESYSGOOD, PTRACE_O_TRACEFORK, PTRACE_O_TRACEVFORK)
2280 (PTRACE_O_TRACECLONE, PTRACE_O_TRACEEXEC, PTRACE_O_TRACEVFORKDONE)
2281 (PTRACE_O_TRACEEXIT, PTRACE_EVENT_FORK, PTRACE_EVENT_VFORK)
2282 (PTRACE_EVENT_CLONE, PTRACE_EVENT_EXEC, PTRACE_EVENT_VFORK_DONE)
2283 (PTRACE_EVENT_EXIT, __WALL): Provide default definitions.
2284 (stopped_pids, thread_db_active, must_set_ptrace_flags): New variables.
2285 (using_threads): Always set to 1.
2286 (handle_extended_wait): New.
2287 (add_process): Do not set TID.
2288 (linux_create_inferior): Set must_set_ptrace_flags.
2289 (linux_attach_lwp): Remove TID argument. Do not check using_threads.
2290 Use PTRACE_SETOPTIONS. Call new_thread_notify. Update all callers.
2291 (linux_thread_alive): Rename TID argument to LWPID.
2292 (linux_wait_for_process): Handle unknown processes. Do not use TID.
2293 (linux_wait_for_event): Do not use TID or check using_threads. Update
2294 call to dead_thread_notify. Call handle_extended_wait.
2295 (linux_create_inferior): Use PTRACE_SETOPTIONS.
2296 (send_sigstop): Delete sigstop_sent.
2297 (wait_for_sigstop): Avoid TID.
2298 (linux_supports_tracefork_flag, linux_tracefork_child, my_waitpid)
2299 (linux_test_for_tracefork): New.
2300 (linux_lookup_signals): Use thread_db_active and
2301 linux_supports_tracefork_flag.
2302 (initialize_low): Use thread_db_active and linux_test_for_tracefork.
2303 * linux-low.h (get_process_thread): Avoid TID.
2304 (struct process_ifo): Move thread_known and tid to the end. Remove
2306 (linux_attach_lwp, thread_db_init): Update prototypes.
2307 * server.h (change_inferior_id): Delete prototype.
2308 (add_pid_to_list, pull_pid_from_list): New prototypes.
2309 * thread-db.c (thread_db_use_events): New.
2310 (find_first_thread): Rename to...
2311 (find_one_thread): ...this. Update callers and messages. Do not
2312 call fatal. Check thread_db_use_events. Do not call
2313 change_inferior_id or new_thread_notify.
2314 (maybe_attach_thread): Update. Do not call new_thread_notify.
2315 (thread_db_init): Set thread_db_use_events. Check use_events.
2316 * utils.c (fatal, warning): Correct message prefix.
2318 2007-10-15 Daniel Jacobowitz <dan@codesourcery.com>
2320 * Makefile.in (clean): Remove new files.
2321 (powerpc-32.o, powerpc-32.c, powerpc-e500.o, powerpc-e500.c)
2322 (powerpc-64.o, powerpc-64.c): New rules.
2323 * configure.srv: Use alternate register sets for powerpc64-*-linux*
2324 with AltiVec, powerpc-*-linux* with AltiVec, and powerpc-*-linux*
2326 * linux-ppc-low.c (ppc_regmap): Do not fetch the FP registers for
2328 (ppc_cannot_store_register): Do not check for FPSCR for SPE targets.
2329 (PTRACE_GETVRREGS, PTRACE_SETVRREGS, SIZEOF_VRREGS, ppc_fill_vrregset)
2330 (ppc_store_vrregset, PTRACE_GETEVRREGS, PTRACE_SETEVRREGS)
2331 (struct gdb_evrregset_t, ppc_fill_evrregset, ppc_store_evrregset): New.
2332 (target_regsets): Add AltiVec and SPE register sets.
2333 * configure.ac: Check for AltiVec and SPE.
2334 * linux-ppc64-low.c (PTRACE_GETVRREGS, PTRACE_SETVRREGS, SIZEOF_VRREGS)
2335 (ppc_fill_vrregset, ppc_store_vrregset): New.
2336 (target_regsets): Add AltiVec register set.
2337 * configure: Regenerated.
2339 2007-09-19 Daniel Jacobowitz <dan@codesourcery.com>
2341 * linux-low.c (O_LARGEFILE): Define.
2342 (linux_read_memory): Use /proc/PID/mem.
2343 * configure.ac: Use AC_GNU_SOURCE. Check for pread64.
2344 * configure, config.in: Regenerated.
2346 2007-09-04 Daniel Jacobowitz <dan@codesourcery.com>
2348 * linux-low.c (linux_wait_for_event): Do not pass signals while
2351 2007-09-03 Pedro Alves <pedro_alves@portugalmail.pt>
2353 * win32-low.c (create_process): New.
2354 (win32_create_inferior): Use create_process instead of
2355 CreateProcess. If create_process failed retry appending an ".exe"
2356 suffix. Store the GetLastError result immediatelly after
2357 create_process calls and use it on the call to error.
2359 2007-09-03 Pedro Alves <pedro_alves@portugalmail.pt>
2361 * win32-low.c (handle_load_dll): Don't use toolhelp when waiting.
2363 2007-08-23 Joel Brobecker <brobecker@adacore.com>
2365 * configure.ac: Switch license to GPLv3.
2367 2007-08-01 Michael Snyder <msnyder@access-company.com>
2369 * remote-utils.c (putpkt_binary): Memory leak, free buf2.
2371 2007-07-31 Pedro Alves <pedro_alves@portugalmail.pt>
2373 * win32-low.c (winapi_CloseToolhelp32Snapshot) [_WIN32_WCE]: New
2375 (win32_CloseToolhelp32Snapshot) [_WIN32_WCE]: New global var.
2376 (load_toolhelp) [_WIN32_WCE]: Load TOOLHELP.DLL. Get
2377 CloseToolhelp32Snapshot.
2378 (toolhelp_get_dll_name) [_WIN32_WCE]: Close the snapshot with
2379 CloseToolhelp32Snapshot.
2381 2007-07-27 Michael Snyder <michael.snyder@access-company.com>
2383 * server.c (main): Check for inferior exit before main loop.
2385 2007-07-18 Pedro Alves <pedro_alves@portugalmail.pt>
2387 * remote-utils.c (remote_open): Set SO_KEEPALIVE on remote_desc
2388 instead of on tmp_desc.
2390 2007-07-17 Pedro Alves <pedro_alves@portugalmail.pt>
2391 Daniel Jacobowitz <dan@codesourcery.com>
2393 * inferiors.c (all_dlls, dlls_changed, get_dll): New.
2394 (add_thread): Minor cleanups.
2395 (clear_inferiors): Move lower in the file. Clear the DLL
2397 (free_one_dll, match_dll, loaded_dll, unloaded_dll, clear_list): New.
2398 * remote-utils.c (prepare_resume_reply): Check dlls_changed.
2399 (xml_escape_text): New.
2400 * server.c (handle_query): Handle qXfer:libraries:read. Report it
2402 (handle_v_cont): Report errors.
2403 (gdbserver_version): Update.
2404 (main): Correct size of own_buf. Do not report initial DLL events.
2405 * server.h (struct dll_info, all_dlls, dlls_changed, loaded_dll)
2406 (unloaded_dll, xml_escape_text): New.
2407 * win32-low.c (enum target_waitkind): Update comments.
2408 (win32_add_one_solib, get_image_name, winapi_EnumProcessModules)
2409 (winapi_GetModuleInformation, winapi_GetModuleFileNameExA)
2410 (win32_EnumProcessModules, win32_GetModuleInformation)
2411 (win32_GetModuleFileNameExA, load_psapi, psapi_get_dll_name)
2412 (winapi_CreateToolhelp32Snapshot, winapi_Module32First)
2413 (winapi_Module32Next, win32_CreateToolhelp32Snapshot)
2414 (win32_Module32First, win32_Module32Next, load_toolhelp)
2415 (toolhelp_get_dll_name, handle_load_dll, handle_unload_dll): New.
2416 (get_child_debug_event): Handle DLL events.
2417 (win32_wait): Likewise.
2419 2007-07-12 Daniel Jacobowitz <dan@codesourcery.com>
2421 * configure.srv: Set srv_linux_regsets for sh*-*-linux*.
2422 * linux-sh-low.c (sh_fill_gregset, target_regsets): New.
2424 2007-07-08 Pedro Alves <pedro_alves@portugalmail.pt>
2426 * win32-low.c (handle_output_debug_string): Ignore event if not
2429 2007-07-08 Pedro Alves <pedro_alves@portugalmail.pt>
2431 * win32-arm-low.c (arm_wince_breakpoint): Fix typo.
2433 2007-07-03 Daniel Jacobowitz <dan@codesourcery.com>
2435 * remote-utils.c (look_up_one_symbol): Handle 'm' packets.
2437 2007-07-02 Daniel Jacobowitz <dan@codesourcery.com>
2439 * inferiors.c (change_inferior_id): Add comment.
2440 * linux-low.c (check_removed_breakpoint): Add an early
2441 prototype. Improve debug output.
2442 (linux_attach): Doc update.
2443 (linux_detach_one_process, linux_detach): Clean up before releasing
2445 (send_sigstop, wait_for_sigstop): Improve comments and debug output.
2446 * linux-low.h (struct process_info): Doc improvement.
2447 * mem-break.c (delete_all_breakpoints): New.
2448 * mem-break.h (delete_all_breakpoints): New prototype.
2449 * thread-db.c (find_first_thread): New.
2450 (thread_db_create_event): Call it instead of
2451 thread_db_find_new_threads. Clean up unused variables.
2452 (maybe_attach_thread): Remove first thread handling.
2453 (thread_db_find_new_threads): Use find_first_thread.
2454 (thread_db_get_tls_address): Likewise.
2456 2007-06-27 Daniel Jacobowitz <dan@codesourcery.com>
2458 * thread-db.c (thread_db_find_new_threads): Add prototype.
2459 (thread_db_create_event): Check for the main thread before adding
2461 (maybe_attach_thread): Only enable event reporting if TID == 0.
2462 (thread_db_get_tls_address): Check for new threads.
2464 2007-06-20 Daniel Jacobowitz <dan@codesourcery.com>
2466 * linux-low.c (linux_create_inferior): Try execv before execvp.
2467 * spu-low.c (spu_create_inferior): Likewise.
2469 2007-06-13 Mike Frysinger <vapier@gentoo.org>
2471 * linux-low.c (linux_create_inferior): Change execv to execvp.
2472 * spu-low.c (spu_create_inferior): Likewies.
2474 2007-06-13 Daniel Jacobowitz <dan@codesourcery.com>
2476 * Makefile.in (clean): Clean new files instead of deleted ones.
2477 (reg-mips.o, reg-mips.c, reg-mips64.o, reg-mips64.c): Delete.
2478 (mips-linux.o, mips-linux.c, mips64-linux.o, mips64-linux.c): New
2480 * configure.srv: Specify XML files and new regformats for MIPS and
2482 * linux-mips-low.c (mips_num_regs): Set to only used registers.
2483 (mips_regmap): Do not fetch $0. Remove unused registers. Add
2484 an entry for the restart register.
2485 (mips_cannot_fetch_register, mips_cannot_store_register)
2486 (mips_reinsert_addr, mips_fill_fpregset, mips_store_fpregset): Update
2487 register names to match the XML descriptions.
2488 (mips_fill_gregset, mips_store_gregset): Likewise. Handle the
2489 restart register instead of $0.
2491 2007-06-12 Ulrich Weigand <uweigand@de.ibm.com>
2492 Markus Deuling <deuling@de.ibm.com>
2494 * remote-utils.c (decode_xfer_write): New function.
2495 * server.h (decode_xfer_write): Add prototype.
2496 * server.c (handle_query): Add PACKET_LEN argument. Support
2497 qXfer:spu:read and qXfer:spu:write packets.
2498 (main): Pass packet_len to handle_query.
2499 * spu-low.c (spu_target_ops): Add spu_proc_xfer_spu.
2500 * target.h (target_ops): Add qxfer_spu.
2502 2007-06-12 Ulrich Weigand <uweigand@de.ibm.com>
2504 * spu-low.c (spu_proc_xfer_spu): Do not return failure when
2505 accessing non-seekable spufs files.
2507 2007-05-16 Markus Deuling <deuling@de.ibm.com>
2509 * server.c (handle_query): Add reply for qC packet.
2511 2007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
2512 Leo Zayas <lerele@champenstudios@com>
2514 * server.h (check_remote_input_interrupt_request): New function.
2515 * remote_utils.c (INVALID_DESCRIPTOR): New define.
2516 (remote_desc): Initialize with INVALID_DESCRIPTOR.
2517 (input_interrupt): Expose on USE_WIN32API too. Fix whitespace.
2518 (check_remote_input_interrupt_request): New function.
2519 * server.h (check_remote_input_interrupt_request): Declare.
2520 * win32-low.c (winapi_DebugBreakProcess,
2521 winapi_GenerateConsoleCtrlEvent): New typedefs.
2522 (get_child_debug_event): Lower Win32 debug event polling from 1 sec
2524 (win32_wait): Check for remote interrupt request
2525 with check_remote_input_interrupt_request.
2526 (win32_request_interrupt): New function.
2527 (win32_target_op): Set request_interrupt to win32_request_interrupt.
2529 2007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
2531 * win32-low.c (debug_registers_changed,
2532 debug_registers_used, CONTEXT_EXTENDED_REGISTERS,
2533 CONTEXT_FLOATING_POINT, CONTEXT_DEBUG_REGISTERS,
2534 CONTEXT_DEBUGGER, CONTEXT_DEBUGGER_DR): Delete.
2535 (thread_rec): Get context using the low target.
2536 (child_add_thread): Call thread_added on the low target,
2537 which does the same thing.
2539 (do_initial_child_stuff): Remove debug registers references.
2540 Set context using the low target. Resume threads after
2541 setting the contexts.
2542 (child_continue): Remove dead variable. Remove debug
2543 registers references.
2544 (child_fetch_inferior_registers): Go through the low target.
2545 (do_child_store_inferior_registers): Remove.
2546 (child_store_inferior_registers): Go through the low target.
2547 (win32_resume): Remove debug registers references.
2548 Set context using the low target.
2549 (handle_exception): Change return type to void. Don't record
2550 context here. Set status to TARGET_WAITKIND_SPURIOUS on a
2551 first chance exception.
2552 (get_child_debug_event): Change return type to void. Remove
2553 goto loop. Always return after waiting for debug event.
2554 (win32_wait): Convert to switch statement. Handle spurious
2557 * win32-i386-low.c (debug_registers_changed,
2558 debug_registers_used): New.
2559 (initial_stuff): Rename to ...
2560 (i386_initial_stuff): ... this. Clear debug registers
2562 (store_debug_registers): Delete.
2563 (i386_get_thread_context): New.
2564 (load_debug_registers): Delete.
2565 (i386_set_thread_context): New.
2566 (i386_thread_added): New.
2567 (single_step): Rename to ...
2568 (i386_single_step): ... this.
2569 (do_fetch_inferior_registers): Rename to ...
2570 (i386_fetch_inferior_register): ... this.
2571 (i386_store_inferior_register): New.
2572 (the_low_target): Adapt to new interface.
2574 * win32-arm-low.c (CONTEXT_FLOATING_POINT): Define.
2575 (arm_get_thread_context): New.
2576 (arm_set_thread_context): New.
2578 (do_fetch_inferior_registers): Rename to ...
2579 (arm_fetch_inferior_register): ... this.
2580 (arm_store_inferior_register): New.
2581 (arm_wince_breakpoint): Reimplement as unsigned long.
2582 (arm_wince_breakpoint_len): Define.
2583 (the_low_target): Adapt to new interface.
2585 * win32-low.h (target_ops): Remove regmap, store_debug_registers and
2586 load_debug_registers. Add get_thread_context, set_thread_context,
2587 thread_added and store_inferior_register. Rename
2588 fetch_inferior_registers to fetch_inferior_register.
2589 (regptr): Remove declaration.
2591 2007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
2593 * linux-low.c (linux_detach): Change return type to int. Return 0.
2594 * spu-low.c (spu_detach): Likewise.
2596 2007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
2598 * target.h (target_ops): Change return type of detach to int.
2600 (join_inferior): New.
2601 * server.c (main): Don't skip detach support on mingw32.
2602 If the inferior doesn't support detaching return error.
2603 Call join_inferior instead of using waitpid.
2604 * linux-low.c (linux_join): New.
2605 (linux_target_op): Add linux_join.
2606 * spu-low.c (spu_join): New.
2607 (spu_target_ops): Add spu_join.
2608 * win32-low.c (win32_detach): Adapt to new interface.
2609 Reopen current_process_handle before detaching. Issue a child
2610 resume before detaching.
2612 (win32_target_op): Add win32_join.
2614 2007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
2616 * win32-low.c (win32-attach): Fix return value.
2617 * target.h (target_ops): Describe ATTACH return values.
2619 2007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
2621 * win32-low.c (GETPROCADDRESS): Define.
2622 (winapi_DebugActiveProcessStop): Add WINAPI. typedef as pointer.
2623 (winapi_DebugSetProcessKillOnExit): Likewise.
2624 (win32_create_inferior): Force usage of ansi CreateProcessA.
2625 (win32_attach): Use GETPROCADDRESS.
2626 (win32_detach): Likewise.
2628 2007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
2630 * win32-low.c (win32_wait): Don't use WSTOPSIG.
2632 2007-03-30 Pedro Alves <pedro_alves@portugalmail.pt>
2634 * win32-low.c: Commit leftover changes from 2007-03-29.
2636 2007-03-30 Daniel Jacobowitz <dan@codesourcery.com>
2638 * i387-fp.c (struct i387_fsave, struct i387_fxsave): Make 16-bit
2639 fields short instead of int. Add explicit padding.
2640 (i387_cache_to_fsave): Remove unnecessary casts.
2641 (i387_fsave_to_cache): Doc fix.
2642 (i387_cache_to_fxsave): Remove unnecessary casts and masking.
2644 2007-03-30 Daniel Jacobowitz <dan@codesourcery.com>
2646 * i387-fp.c (i387_cache_to_fxsave): Reinitialize val2 before use.
2647 (i387_fxsave_to_cache): Check fp->ftag while building ftag value.
2649 2007-03-29 Pedro Alves <pedro_alves@portugalmail.pt>
2651 * configure.srv (arm*-*-mingw32ce*): Move near the other
2654 2007-03-29 Pedro Alves <pedro_alves@portugalmail.pt>
2656 * configure.ac: Add errno checking.
2657 (AC_CHECK_HEADERS): Add errno.h, fcntl.h, signal.h,
2658 sys/file.h and malloc.h.
2659 (AC_CHECK_DECLS): Add perror.
2660 (srv_mingwce): Handle.
2661 * configure.srv (i[34567]86-*-cygwin*): Add
2662 win32-i386-low.o to srv_tgtobj.
2663 (i[34567]86-*-mingw*): Likewise.
2664 (arm*-*-mingw32ce*): Add case.
2665 * gdbreplay.c [HAVE_SYS_FILE_H, HAVE_SIGNAL_H,
2666 HAVE_FCNTL_H, HAVE_ERRNO_H, HAVE_MALLOC_H]: Check.
2667 [__MINGW32CE__] (strerror): New function.
2668 [__MINGW32CE__] (errno): Define to GetLastError.
2669 [__MINGW32CE__] (COUNTOF): New macro.
2670 (remote_open): Remove extra close call.
2671 * mem-break.c (delete_breakpoint_at): New function.
2672 * mem-break.h (delete_breakpoint_at): Declare.
2673 * remote-utils.c [HAVE_SYS_FILE_H, HAVE_SIGNAL_H,
2674 HAVE_FCNTL_H, HAVE_UNISTD_H, HAVE_ERRNO_H]: Check.
2675 [USE_WIN32API] (read, write): Add char* casts.
2676 * server.c [HAVE_UNISTD_H, HAVE_SIGNAL_H]: Check.
2677 * server.h: Include wincecompat.h on Windows CE.
2678 [HAVE_ERRNO_H]: Check.
2679 (perror): Declare if not declared.
2680 * utils.c: Add stdlib.h, errno.h and malloc.h includes.
2681 (perror_with_name): Remove errno declaration.
2682 * wincecompat.h: New.
2683 * wincecompat.c: New.
2685 * win32-arm-low.c: New.
2686 * win32-i386-low.c: New.
2687 (win32-low.c): Include mem-break.h and win32-low.h, and winnt.h.
2688 (OUTMSG2): Make it safe.
2690 (COUNTOF): New macro.
2691 (NUM_REGS): Get it from the low target.
2692 (CONTEXT_EXTENDED_REGISTERS, CONTEXT_FLOATING_POINT,
2693 CONTEXT_DEBUG_REGISTERS): Add fallbacks to 0.
2694 (thread_rec): Let low target handle debug registers.
2695 (child_add_thread): Likewise.
2696 (child_init_thread_list): Likewise.
2697 (continue_one_thread): Likewise.
2699 (do_child_fetch_inferior_registers): Move to ...
2700 * win32-i386-low.c: ... here, and rename to ...
2701 (do_fetch_inferior_registers): ... this.
2702 * win32-low.c (child_fetch_inferior_registers):
2703 Go through the low target.
2704 (do_child_store_inferior_registers): Use regptr.
2705 (strwinerror): New function.
2706 (win32_create_inferior): Handle Windows CE.
2707 Use strwinerror instead of strerror on Windows error
2708 codes. Add program to the error output.
2709 Don't close the main thread handle on Windows CE.
2710 (win32_attach): Use coredll.dll on Windows CE.
2711 (win32_kill): Close current process and current
2713 (win32_detach): Use coredll.dll on Windows CE.
2714 (win32_resume): Let low target handle debug registers, and
2716 (handle_exception): Add/Remove initial breakpoint. Avoid
2717 non-existant WSTOPSIG on Windows CE.
2718 (win32_read_inferior_memory): Cast to remove warning.
2719 (win32_arch_string): Go through the low target.
2720 (initialize_low): Call set_breakpoint_data with the low
2721 target's breakpoint.
2722 * win32-low.c (dr, FLAG_TRACE_BIT, FCS_REGNUM,
2723 FOP_REGNUM, mappings): Move to ...
2724 * win32-i386-low.c: ... here.
2725 * win32-low.c (win32_thread_info): Move to ...
2726 * win32-low.h: ... here.
2727 * Makefile.in (SFILES): Add win32-low.c, win32-i386-low.c,
2728 win32-arm-low.c and wincecompat.c.
2729 (all:): Add $EXEEXT.
2730 (install-only:): Likewise.
2731 (gdbserver:): Likewise.
2732 (gdbreplay:): Likewise.
2733 * config.in: Regenerate.
2734 * configure: Regenerate.
2736 2007-03-28 Pedro Alves <pedro_alves@portugalmail.pt>
2738 * win32-low.c: Rename typedef thread_info to
2739 win32_thread_info throughout.
2741 2007-03-28 Pedro Alves <pedro_alves@portugalmail.pt>
2743 * win32-i386-low.c: Rename to ...
2744 * win32-low.c: ... this.
2745 * configure.srv: Replace win32-i386-low.o with win32-low.o.
2746 * Makefile.in: Likewise.
2748 2007-03-27 Pedro Alves <pedro_alves@portugalmail.pt>
2750 * remote-utils.c (monitor_output): Constify msg parameter.
2751 * server.h (monitor_output): Likewise.
2752 * win32-i386-low.c (handle_output_debug_string): New.
2753 (win32_kill): Handle OUTPUT_DEBUG_STRING_EVENT events using
2754 handle_output_debug_string.
2755 (get_child_debug_event): Likewise.
2757 2007-03-27 Mat Hostetter <mat@lcs.mit.edu>
2759 * server.c (main): Correct strtoul check.
2761 2007-03-27 Jon Ringle <jon@ringle.org>
2763 * linux-low.c: Check __ARCH_HAS_MMU__ also.
2765 2007-03-27 Brooks Moses <brooks.moses@codesourcery.com>
2767 * Makefile.in: Add dummy "pdf" and "install-pdf" targets.
2769 2007-02-27 Daniel Jacobowitz <dan@codesourcery.com>
2771 * terminal.h: Check HAVE_SGTTY_H.
2773 2007-02-27 Mat Hostetter <mat@lcs.mit.edu>
2775 * remote-utils.c (remote_open): Print out the assigned port number.
2777 2007-02-26 Daniel Jacobowitz <dan@codesourcery.com>
2779 * remote-utils.c (monitor_output): New function.
2780 * server.c (debug_threads): Define here.
2781 (monitor_show_help): New function.
2782 (handle_query): Handle qRcmd.
2783 (main): Do not handle 'd' packet.
2784 * server.h (debug_threads, remote_debug, monitor_output): Declare.
2785 * linux-low.c, spu-low.c, win32-i386-low.c: Remove definitions
2788 2007-02-25 Pedro Alves <pedro_alves@portugalmail.pt>
2790 * Makefile.in (EXEEXT): New.
2791 (clean): Use $(EXEEXT).
2793 2007-02-25 Pedro Alves <pedro_alves@portugalmail.pt>
2795 * target.h (target_ops): Rename send_signal to request_interrupt,
2796 and remove enum target_signal parameter.
2797 * linux-low.c (linux_request_interrupt): Rename from
2798 linux_send_signal, and always send SIGINT.
2799 * spu-low.c (spu_request_interrupt): Rename from spu_send_signal,
2800 and always send SIGINT.
2801 * remote-utils.c (putpkt_binary): Call request_interrupt, instead
2803 (input_interrupt): Likewise.
2805 2007-02-25 Pedro Alves <pedro_alves@portugalmail.pt>
2807 * server.c (get_features_xml): Check if target implemented
2809 * win32-i386-low.c (win32_arch_string): New.
2810 (win32_target_ops): Add win32_arch_string as arch_string member.
2812 2007-02-22 Markus Deuling <deuling@de.ibm.com>
2814 * spu-low.c (spu_arch_string): New.
2815 (spu_target_ops): Add spu_arch_string.
2817 2007-02-16 Daniel Jacobowitz <dan@codesourcery.com>
2819 * remote-utils.c: Remove HAVE_TERMINAL_H check.
2820 * configure.ac: Do not check for terminal.h.
2821 * configure, config.in: Regenerated.
2823 2007-02-08 Daniel Jacobowitz <dan@codesourcery.com>
2825 * Makefile.in (OBS): Add $(XML_BUILTIN).
2826 (XML_DIR, XML_TARGET, XML_FILES, XML_BUILTIN): New.
2828 (target.xml, xml-builtin.c, stamp-xml, arm-with-iwmmxt.o)
2829 (arm-with-iwmmxt.c): New.
2830 * config.in, configure: Regenerate.
2831 * configure.ac: Check for iWMMXt. Handle srv_xmltarget,
2832 srv_xmlbuiltin, and srv_xmlfiles. Define USE_XML.
2833 * configure.srv: Mention srv_xmltarget and srv_xmlfiles.
2834 (arm*-*-linux*): Add iWMMXt and regset support.
2835 * linux-arm-low.c (PTRACE_GETWMMXREGS, PTRACE_SETWMMXREGS): Define.
2836 (arm_fill_gregset, arm_store_gregset, arm_fill_wmmxregset)
2837 (arm_store_wmmxregset, target_regsets): New.
2838 * server.c (get_features_xml): Take annex argument. Check builtin
2840 (handle_query): Handle multiple annexes.
2842 2007-01-29 Daniel Jacobowitz <dan@codesourcery.com>
2844 * remote-utils.c [USE_WIN32API] (read, write): Define.
2845 (putpkt_binary, input_interrupt, readchar, getpkt): Use read and
2848 2007-01-09 Daniel Jacobowitz <dan@codesourcery.com>
2850 * linux-i386-low.c (the_low_target): Set arch_string.
2851 * linux-x86-64-low.c (the_low_target): Likewise.
2852 * linux-low.c (linux_arch_string): New.
2853 (linux_target_ops): Add it.
2854 * linux-low.h (struct linux_target_ops): Add arch_string.
2855 * server.c (write_qxfer_response): Use const void * for DATA.
2856 (get_features_xml): New.
2857 (handle_query): Handle qXfer:features:read. Report it for qSupported.
2858 * target.h (struct target_ops): Add arch_string method.
2860 2007-01-03 Denis Pilat <denis.pilat@st.com>
2861 Daniel Jacobowitz <dan@codesourcery.com>
2863 * linux-low.c (linux_kill): Handle being called with no threads.
2864 * win32-i386-low.c (win32_kill): Likewise.
2865 (get_child_debug_event): Clear current_process_handle.
2867 2006-12-30 Denis PILAT <denis.pilat@st.com>
2868 Daniel Jacobowitz <dan@codesourcery.com>
2870 * remote-utils.c (remote_open): Check the type of specified
2871 serial port devices before opening them.
2872 * server.c (main): Kill the inferior if an error occurs during
2873 the first remote_open.
2875 2006-12-05 Markus Deuling <deuling@de.ibm.com>
2877 * README: Update supported targets.
2879 2006-11-28 Daniel Jacobowitz <dan@codesourcery.com>
2881 * Makefile.in (clean): Remove reg-mips64.c.
2882 (reg-mips64.c, reg-mips64.o): New rules.
2883 * configure.srv: Handle mips64. Include regset support for mips.
2884 * linux-mips-low.c (union mips_register): New.
2885 (mips_get_pc, mips_set_pc, mips_reinsert_addr): Use it.
2886 (mips_breakpoint, mips_breakpoint_at): Use int.
2887 (mips_collect_register, mips_supply_register)
2888 (mips_collect_register_32bit, mips_supply_register_32bit)
2889 (mips_fill_gregset, mips_store_gregset, mips_fill_fpregset)
2890 (mips_store_fpregset, target_regsets): New.
2891 * thread-db.c (thread_db_get_tls_address): Use uintptr_t.
2893 2006-11-22 Ulrich Weigand <uweigand@de.ibm.com>
2895 * configure.srv: Add target "spu*-*-*".
2896 * Makefile.in (clean): Remove reg-spu.c.
2897 (reg-spu.c, reg-spu.o, spu-low.o): Add dependencies.
2898 * spu-low.c: New file.
2900 2006-11-16 Daniel Jacobowitz <dan@codesourcery.com>
2902 * configure.ac: Correct td_thr_tls_get_addr test.
2903 * configure: Regenerated.
2905 2006-11-16 Daniel Jacobowitz <dan@codesourcery.com>
2907 * linux-low.c (linux_wait_for_event): Reformat. Use the
2909 * remote-utils.c (decode_address_to_semicolon): New.
2910 * server.c (pass_signals, handle_general_set): New.
2911 (handle_query): Mention QPassSignals for qSupported.
2912 (main): Call handle_general_set.
2913 * server.h (pass_signals, decode_address_to_semicolon): New.
2915 2006-11-06 Daniel Jacobowitz <dan@codesourcery.com>
2917 * server.c (handle_query): Correct error handling for read_auxv.
2919 2005-10-19 Ulrich Weigand <uweigand@de.ibm.com>
2921 * configure.srv [s390-*-linux*, s390x-*-linux*]: Set srv_linux_regsets
2922 and srv_linux_thread_db to yes.
2923 * linux-s390-low.c (s390_fill_gregset): New function.
2924 (target_regsets): Define data structure.
2926 2006-10-17 Daniel Jacobowitz <dan@codesourcery.com>
2928 * acinclude.m4 (SRV_CHECK_TLS_GET_ADDR): New.
2929 * configure.ac: Use it. Define HAVE_TD_THR_TLS_GET_ADDR.
2930 * config.in, configure: Regenerated.
2931 * inferiors.c (gdb_id_to_thread): New function.
2932 (gdb_id_to_thread_id): Use it.
2933 * linux-low.c (linux_target_ops): Use thread_db_get_tls_address.
2934 * linux-low.h (struct process_info): Add th member.
2935 (thread_db_get_tls_address): New prototype.
2936 * remote-utils.c (decode_address): Make non-static.
2937 * server.c (handle_query): Handle qGetTLSAddr.
2938 * server.h (gdb_id_to_thread, decode_address): New prototypes.
2939 * target.h (struct target_ops): Add get_tls_address.
2940 * thread-db.c (maybe_attach_thread): Save the thread handle.
2941 (thread_db_get_tls_address): New.
2943 2006-09-28 Daniel Jacobowitz <dan@codesourcery.com>
2945 * linux-low.c (PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Define.
2946 (linux_resume_one_process): Take a siginfo_t *. Update all
2947 callers. Queue it if necessary. Use PTRACE_SETSIGINFO.
2948 (struct pending_signals): Add a siginfo_t.
2949 (linux_wait_for_process): Always set last_status.
2950 (linux_wait_for_event): Use PTRACE_GETSIGINFO.
2951 (linux_queue_one_thread): Use PTRACE_GETSIGINFO.
2952 * linux-low.h (struct process_info): Add last_status.
2954 2006-09-21 Daniel Jacobowitz <dan@codesourcery.com>
2956 * remote-utils.c (try_rle): New function.
2957 (putpkt_binary): Use it.
2959 2006-08-19 Daniel Jacobowitz <dan@codesourcery.com>
2961 * Makefile.in (clean): Clean reg-x86-64-linux.c.
2962 (reg-x86-64-linux.o, reg-x86-64-linux.c): New.
2963 * configure.srv (x86_64-*-linux*): Use reg-x86-64-linux.o.
2964 * linux-x86-64-low.c (x86_64_regmap): Include ORIG_RAX.
2965 (x86_64_fill_gregset, x86_64_store_gregset): Skip floating
2968 2006-08-08 Richard Sandiford <richard@codesourcery.com>
2970 * server.c (terminal_fd): New variable.
2971 (old_foreground_pgrp): Likewise.
2972 (restore_old_foreground_pgrp): New function.
2973 (start_inferior): Record the terminal file descriptor in terminal_fd
2974 and its original foreground group in old_foreground_pgrp. Register
2975 restore_old_foreground_pgrp with atexit().
2977 2006-07-26 Daniel Jacobowitz <dan@codesourcery.com>
2979 * server.c (handle_query): Correct qPart to qXfer.
2981 2006-07-22 Daniel Jacobowitz <dan@codesourcery.com>
2983 * configure.ac: Check for more headers which are missing on
2984 Windows. Automatically supply -lwsock32 and USE_WIN32API.
2985 * configure.srv: Add Cygwin and mingw32.
2986 * remote-utils.c: Don't include headers unconditionally which
2987 are missing on mingw32. Include <winsock.h> for mingw32.
2988 (remote_open): Adjust for mingw32 support. Flush
2989 standard error after writing to it.
2990 (remote_close, putpkt_binary, input_interrupt, block_async_io)
2991 (unblock_async_io, enable_async_io, disable_async_io)
2992 (readchar, getpkt): Update for Winsock support.
2993 (prepare_resume_reply): Expect a protocol signal number.
2994 * server.c: Disable <sys/wait.h> on mingw32.
2995 (start_inferior): Adjust for mingw32 support. Flush
2996 standard error after writing to it.
2997 (attach_inferior): Likewise. Use protocol signal
2999 (main): Skip 'D' packet on mingw32. Use protocol signal numbers
3001 * win32-i386-low.c: New file.
3002 * Makefile.in (XM_CLIBS): Set.
3003 (gdbserver, gdbreplay): Use $(INTERNAL_CFLAGS).
3004 (win32-i386-low.o): New dependency rule.
3005 * linux-low.c (linux_wait): Use target signal numbers.
3006 * target.h (struct target_ops): Doc fix.
3007 * server.h (target_signal_to_name): New prototype.
3008 * gdbreplay.c: Don't include headers unconditionally which
3009 are missing on mingw32. Include <winsock.h> for mingw32.
3010 (remote_close, remote_open): Adjust for Winsock support.
3011 * configure, config.in: Regenerated.
3013 2006-07-12 Daniel Jacobowitz <dan@codesourcery.com>
3015 * server.c (decode_xfer_read, write_qxfer_response): New.
3016 (handle_query): Take a packet length argument. Handle
3017 qXfer:auxv:read instead of qPart:auxv:read. Mention it in
3018 the qSupported response.
3019 (main): Update call to handle_query.
3021 2006-06-22 Daniel Jacobowitz <dan@codesourcery.com>
3023 * remote-utils.c (remote_escape_output, remote_unescape_input): New.
3024 (putpkt_binary): Renamed from putpkt and adjusted for binary
3026 (putpkt): New wrapper for putpkt_binary.
3027 (readchar): Don't mask off the high bit.
3028 (decode_X_packet): New function.
3029 * server.c (main): Call putpkt_binary if a handler sets the packet
3030 length. Save the length of the incoming packet. Handle 'X'.
3031 * server.h (gdb_byte, remote_escape_output, decode_X_packet): New.
3033 2006-06-21 Daniel Jacobowitz <dan@codesourcery.com>
3035 * server.c (handle_query): Handle qSupported.
3037 2006-05-30 Daniel Jacobowitz <dan@codesourcery.com>
3039 * remote-utils.c (all_symbols_looked_up): New variable.
3040 (look_up_one_symbol): Check it.
3041 * server.h (look_up_one_symbol): New declaration.
3042 * thread-db.c (thread_db_init): Set all_symbols_looked_up.
3044 2006-05-30 Daniel Jacobowitz <dan@codesourcery.com>
3046 * Makefile.in (linux-arm-low.o): Update dependencies.
3047 * linux-arm-low.c: Include "gdb_proc_service.h".
3048 (PTRACE_GET_THREAD_AREA): Define.
3049 (ps_get_thread_area): New function.
3051 2006-05-09 Nathan Sidwell <nathan@codesourcery.com>
3053 * configure.srv (m68k*-*-uclinux*): New target.
3054 * linux-low.c (linux_create_inferior): Use vfork on mmuless systems.
3055 (linux_resume_one_process): Remove extraneous cast.
3056 (linux_read_offsets): New.
3057 (linux_target_op): Add linux_read_offsets on mmuless systems.
3058 * server.c (handle_query): Add qOffsets logic.
3059 * target.h (struct target_ops): Add read_offsets.
3061 2006-03-15 Daniel Jacobowitz <dan@codesourcery.com>
3063 * linux-mips-low.c: Include <sys/ptrace.h> and "gdb_proc_service.h".
3064 (PTRACE_GET_THREAD_AREA): Define.
3065 (ps_get_thread_area): New function.
3066 * Makefile.in (linux-i386-low.o, linux-mips-low.o)
3067 (linux-x86-64-low.o): Update.
3069 2006-03-15 Daniel Jacobowitz <dan@codesourcery.com>
3071 * configure.ac: Remove checks for prfpregset_t.
3072 * gdb_proc_service.h: New file.
3073 * linux-i386-low.c, linux-x86-64-low.c, thread-db.c: Use the
3074 new "gdb_proc_service.h".
3075 * proc-service.c: Likewise.
3076 (ps_pglobal_lookup, ps_pdread, ps_pdwrite): Use psaddr_t.
3077 (ps_lgetfpregs, ps_lsetfpregs): Use a void* argument.
3078 * Makefile.in (gdb_proc_service_h): Updated.
3079 * configure, config.in: Regenerated.
3081 2006-03-03 Daniel Jacobowitz <dan@codesourcery.com>
3083 * remote-utils.c (prepare_resume_reply): Move declaration
3084 of gdb_id_from_wait to the top of the block.
3086 2006-02-15 Daniel Jacobowitz <dan@codesourcery.com>
3088 * linux-low.c (regsets_store_inferior_registers): Read the regset
3089 from the target before filling it.
3091 2006-02-08 Daniel Jacobowitz <dan@codesourcery.com>
3093 * server.c (attach_inferior): Return SIGTRAP for a successful
3096 2006-02-01 Daniel Jacobowitz <dan@codesourcery.com>
3098 * Makefile.in (OBS): Add version.o.
3099 (STAGESTUFF): Delete.
3100 (version.o): Add dependencies.
3101 (version.c): Replace rule.
3102 (clean): Remove version.c.
3103 * server.c (gdbserver_version): New.
3104 (gdbserver_usage): Use printf.
3105 (main): Handle --version and --help.
3106 * server.h (version, host_name): Add declarations.
3108 2005-12-23 Eli Zaretskii <eliz@gnu.org>
3120 * linux-x86-64-low.c:
3123 * linux-ppc64-low.c:
3132 * linux-crisv32-low.c:
3144 * gdbserver.1: Add (C) after Copyright. Update the FSF
3147 2005-11-13 Daniel Jacobowitz <dan@codesourcery.com>
3149 * linux-arm-low.c (arm_eabi_breakpoint): New variable.
3150 (arm_breakpoint_at): Recognize both breakpoints.
3151 (the_low_target): Use the correct breakpoint instruction.
3153 2005-11-02 Daniel Jacobowitz <dan@codesourcery.com>
3155 * configure.srv (x86_64-*-linux*): Turn on thread_db support.
3156 * linux-x86-64-low.c (x86_64_breakpoint, x86_64_breakpoint_len)
3157 (x86_64_get_pc, x86_64_set_pc, x86_64_breakpoint_at): New.
3158 (the_low_target): Update.
3160 2005-10-25 Andreas Schwab <schwab@suse.de>
3162 * server.c (main): Allocate mem_buf with PBUFSIZ bytes.
3164 * linux-ia64-low.c (ia64_regmap): Remove NAT registers.
3165 (ia64_num_regs): Reduce to 462.
3167 2005-09-17 Daniel Jacobowitz <dan@codesourcery.com>
3169 * acinclude.m4: Correct quoting.
3170 * aclocal.m4: Regenerated.
3172 Suggested by SZOKOVACS Robert <szo@ies.hu>:
3173 * thread-db.c (thread_db_err_str): Handle TD_VERSION.
3174 (thread_db_init): Call thread_db_err_str.
3175 * configure.ac: Check for TD_VERSION.
3176 * config.in, configure: Regenerated.
3178 2005-07-31 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3180 * server.h (error, fatal, warning): Add ATTR_FORMAT.
3182 2005-07-13 Daniel Jacobowitz <dan@codesourcery.com>
3184 * configure.ac: Define HAVE_LINUX_REGSETS even if PTRACE_GETREGS
3185 is not available. Define HAVE_PTRACE_GETREGS if it is.
3186 * config.in, configure: Regenerated.
3187 * configure.srv: Set srv_linux_regsets for PowerPC and PowerPC64.
3188 * linux-i386-low.c, linux-m68k-low.c: Update to use
3189 HAVE_PTRACE_GETREGS.
3190 * linux-low.c (regsets_fetch_inferior_registers)
3191 (regsets_store_inferior_registers): Only return 0 if we processed
3193 * linux-ppc-low.c (ppc_fill_gregset, target_regsets): New.
3194 * linux-ppc64-low.c (ppc_fill_gregset, target_regsets): New.
3196 2005-07-13 Daniel Jacobowitz <dan@codesourcery.com>
3198 * inferiors.c (struct thread_info): Add gdb_id.
3199 (add_thread): Add gdb_id argument.
3200 (thread_id_to_gdb_id, thread_to_gdb_id, gdb_id_to_thread_id): New.
3201 * linux-low.c (linux_create_inferior, linux_attach_lwp): Update
3202 calls to add_thread.
3203 * remote-utils.c (prepare_resume_reply: Use thread_to_gdb_id.
3204 * server.c (handle_query): Use thread_to_gdb_id.
3205 (handle_v_cont, main): Use gdb_id_to_thread_id.
3206 * server.h (add_thread): Update prototype.
3207 (thread_id_to_gdb_id, thread_to_gdb_id, gdb_id_to_thread_id): New
3210 2005-07-13 Daniel Jacobowitz <dan@codesourcery.com>
3212 * linux-low.c (fetch_register, usr_store_inferior_registers): Handle
3213 left-padded registers.
3214 * linux-low.h (struct linux_target_ops): Add left_pad_xfer.
3215 * linux-ppc64-low.c (the_low_target): Set left_pad_xfer.
3217 2005-07-01 Steve Ellcey <sje@cup.hp.com>
3219 * configure.ac (BFD_NEED_DECLARATION): Replace with AC_CHECK_DECLS.
3220 * configure: Regenerate.
3221 * config.in: Regenerate.
3222 * server.h (NEED_DECLARATION_STRERROR):
3223 Replace with !HAVE_DECL_STRERROR.
3225 2005-06-16 Daniel Jacobowitz <dan@codesourcery.com>
3227 * linux-low.c (linux_wait, linux_send_signal): Don't test
3228 an unsigned long variable for > 0 if it could be MAX_ULONG.
3229 * server.c (myresume): Likewise.
3230 * target.c (set_desired_inferior): Likewise.
3232 2005-06-13 Mark Kettenis <kettenis@gnu.org>
3234 * configure.ac: Simplify and improve check for socklen_t.
3235 * configure, config.in: Regenerate.
3237 2005-06-12 Daniel Jacobowitz <dan@codesourcery.com>
3239 * acconfig.h: Remove.
3240 * configure.ac: Add a test for socklen_t. Use three-argument
3241 AC_DEFINE throughout.
3242 * config.in: Regenerated using autoheader 2.59.
3243 * configure: Regenerated.
3245 * gdbreplay.c (socklen_t): Provide a default.
3246 (remote_open): Use socklen_t.
3247 * remote-utils.c (socklen_t): Provide a default.
3248 (remote_open): Use socklen_t.
3249 (convert_int_to_ascii, convert_ascii_to_int, decode_M_packet): Use
3252 * i387-fp.c (struct i387_fsave, struct i387_fxsave): Use unsigned
3254 * linux-low.c (linux_read_memory, linux_write_memory)
3255 (linux_read_auxv): Likewise.
3256 * mem-break.c (breakpoint_data, set_breakpoint_data, check_mem_read)
3257 (check_mem_write): Likewise.
3258 * mem-break.h (set_breakpoint_data, check_mem_read, check_mem_write):
3260 * regcache.c (struct inferior_rgcache_data, registers_to_string)
3261 (registers_from_string, register_data): Likewise.
3262 * server.c (handle_query, main): Likewise.
3263 * server.h (convert_ascii_to_int, convert_int_to_ascii)
3264 (decode_M_packet): Likewise.
3265 * target.c (read_inferior_memory, write_inferior_memory): Likewise.
3266 * target.h (struct target_ops): Update read_memory, write_memory,
3268 (read_inferior_memory, write_inferior_memory): Update.
3269 * linux-low.h (struct linux_target_ops): Change type of breakpoint
3271 * linux-arm-low.c, linux-cris-low.c, linux-crisv32-low.c,
3272 linux-i386-low.c, linux-m32r-low.c, linux-m68k-low.c,
3273 linux-mips-low.c, linux-ppc-low.c, linux-ppc64-low.c,
3274 linux-s390-low.c, linux-sh-low.c: Update for changes in
3275 read_inferior_memory and the_low_target->breakpoint.
3277 2005-05-28 Daniel Jacobowitz <dan@codesourcery.com>
3279 * Makefile.in (SFILES): Add linux-ppc64-low.c.
3280 (linux-ppc64-low.o, reg-ppc64.c, reg-ppc64.o): New targets.
3281 * configure.srv: Add powerpc64-*-linux*.
3282 * linux-ppc64-low.c: New file.
3284 2005-05-23 Orjan Friberg <orjanf@axis.com>
3286 * linux-cris-low.c: New file with support for CRIS.
3287 * linux-crisv32-low.c: Ditto for CRISv32.
3288 * Makefile.in (SFILES): Add linux-cris-low.c, linux-crisv32-low.c.
3289 (clean): Add reg-cris.c and reg-crisv32.c.
3290 Add linux-cris-low.o, linux-crisv32-low.o, reg-cris.o, reg-cris.c,
3291 reg-crisv32.o, and reg-crisv32.c to make rules.
3292 * configure.srv: Add cris-*-linux* and crisv32-*-linux* to list of
3295 2005-05-16 Ulrich Weigand <uweigand@de.ibm.com>
3297 * linux-low.c (fetch_register): Ensure buffer size is a multiple
3298 of sizeof (PTRACE_XFER_TYPE).
3299 (usr_store_inferior_registers): Likewise. Zero out excess bytes.
3301 2005-05-12 Orjan Friberg <orjanf@axis.com>
3303 * target.h (struct target_ops): Add insert_watchpoint,
3304 remove_watchpoint, stopped_by_watchpoint, stopped_data_address function
3305 pointers for hardware watchpoint support.
3306 * linux-low.h (struct linux_target_ops): Ditto.
3307 * linux-low.c (linux_insert_watchpoint, linux_remove_watchpoint)
3308 (linux_stopped_by_watchpoint, linux_stopped_data_address): New. Add
3309 to linux_target_ops.
3310 * remote-utils.c (prepare_resume_reply): Add watchpoint information to
3312 * server.c (main): Recognize 'Z' and 'z' packets.
3314 2005-05-10 Ulrich Weigand <uweigand@de.ibm.com>
3316 * linux-s390-low.c (s390_breakpoint, s390_breakpoint_len): Define.
3317 (s390_get_pc, s390_set_pc, s390_breakpoint_at): New functions.
3318 (the_low_target): Add new members.
3320 2005-05-04 Daniel Jacobowitz <dan@codesourcery.com>
3322 * proc-service.c (ps_lgetregs): Search all_processes instead of
3325 2005-05-04 Daniel Jacobowitz <dan@codesourcery.com>
3327 * server.c (start_inferior): Change return type to int.
3328 (attach_inferior): Change sigptr to int *.
3329 (handle_v_cont, handle_v_requests): Change signal to int *.
3330 (main): Change signal to int.
3332 2005-04-15 Kei Sakamoto <sakamoto.kei@renesas.com>
3334 * Makefile.in: Add linux-m32r-low.o, reg-m32r.c and reg-m32r.o.
3335 * configure.srv: Add m32r*-*-linux*.
3336 * linux-m32r-low.c: New file.
3338 2005-03-04 Daniel Jacobowitz <dan@codesourcery.com>
3340 * Makefile.in (stamp-h): Set CONFIG_HEADERS explicitly.
3342 2005-03-03 Daniel Jacobowitz <dan@codesourcery.com>
3344 * inferiors.c (change_inferior_id, add_thread, find_inferior_id):
3345 Take unsigned long arguments for PIDs.
3346 * linux-low.c (add_process, linux_attach_lwp, linux_attach)
3347 (linux_thread_alive, linux_wait_for_event, kill_lwp, send_sigstop)
3348 (wait_for_sigstop, linux_resume_one_process)
3349 (regsets_fetch_inferior_registers, linux_send_signal)
3350 (linux_read_auxv): Likewise. Update the types of variables holding
3351 PIDs. Update format string specifiers.
3352 * linux-low.h (struct process_info, linux_attach_lwp): Likewise.
3353 * remote-utils.c (prepare_resume_reply): Likewise.
3354 * server.c (cont_thread, general_thread, step_thread)
3355 (thread_from_wait, old_thread_from_wait, signal_pid): Change type to
3357 (handle_query): Update format specifiers.
3358 (handle_v_cont, main): Use strtoul for thread IDs.
3359 * server.h (struct inferior_list_entry): Use unsigned long for ID.
3360 (add_thread, find_inferior_id, change_inferior_id, cont_thread)
3361 (general_thread, step_thread, thread_from_wait)
3362 (old_thread_from_wait): Update.
3363 * target.h (struct thread_resume): Use unsigned long for THREAD.
3364 (struct target_ops): Use unsigned long for arguments to attach and
3367 2005-02-24 Daniel Jacobowitz <dan@codesourcery.com>
3369 * acinclude.m4: Include bfd/bfd.m4 directly.
3370 * configure.ac: Use AC_ARG_PROGRAM. Suggested by Aron Griffis
3371 <agriffis@toolchain.org>.
3372 * aclocal.m4, configure: Regenerated.
3374 2005-01-07 Andrew Cagney <cagney@gnu.org>
3376 * configure.ac: Rename configure.in, require autoconf 2.59.
3377 * configure: Re-generate.
3379 2004-12-08 Daniel Jacobowitz <dan@debian.org>
3381 * acinclude.m4 (SRV_CHECK_THREAD_DB): Add ps_get_thread_area. Reset
3383 * aclocal.m4: Regenerated.
3384 * configure: Regenerated.
3386 2004-11-21 Andreas Schwab <schwab@suse.de>
3388 * linux-m68k-low.c (m68k_num_gregs): Define.
3389 (m68k_fill_gregset, m68k_store_gregset, m68k_fill_fpregset)
3390 (m68k_store_fpregset, target_regsets) [HAVE_LINUX_REGSETS]: New.
3391 (m68k_breakpoint, m68k_breakpoint_len, m68k_get_pc, m68k_set_pc)
3392 (m68k_breakpoint_at): New. Add to the_low_target.
3394 * configure.srv (m68*-*-linux*): Set srv_linux_regsets and
3395 srv_linux_thread_db to yes.
3397 2004-10-20 Joel Brobecker <brobecker@gnat.com>
3399 * linux-x86-64-low.c (ARCH_SET_GS): Add definition if missing.
3400 (ARCH_SET_FS): Likewise.
3401 (ARCH_GET_FS): Likewise.
3402 (ARCH_GET_GS): Likewise.
3404 2004-10-16 Daniel Jacobowitz <dan@debian.org>
3406 * linux-i386-low.c (ps_get_thread_area): New.
3407 * linux-x86-64-low.c (ps_get_thread_area): New.
3408 * linux-low.c: Include <sys/syscall.h>.
3409 (linux_kill_one_process): Don't kill the first thread here.
3410 (linux_kill): Kill the first thread here.
3411 (kill_lwp): New function.
3412 (send_sigstop, linux_send_signal): Use it.
3413 * proc-service.c: Clean up #ifdefs.
3414 (fpregset_info): Delete.
3415 (ps_lgetregs): Update and enable implementation.
3416 (ps_lsetregs, ps_lgetfpregs, ps_lsetfpregs): Remove disabled
3418 * remote-utils.c (struct sym_cache, symbol_cache): New.
3419 (input_interrupt): Print a clearer message.
3420 (async_io_enabled): New variable.
3421 (enable_async_io, disable_async_io): Use it. Update comments.
3422 (look_up_one_symbol): Use the symbol cache.
3423 * thread-db.c (thread_db_look_up_symbols): New function.
3424 (thread_db_init): Update comments. Call thread_db_look_up_symbols.
3426 2004-10-16 Daniel Jacobowitz <dan@debian.org>
3428 * configure.in: Test for -rdynamic.
3429 * configure: Regenerated.
3430 * Makefile (INTERNAL_LDFLAGS): New.
3431 (gdbserver, gdbreplay): Use it.
3433 2004-09-02 Andrew Cagney <cagney@gnu.org>
3435 * Makefile.in (TAGS): Replace TM_FILE with DEPRECATED_TM_FILE.
3437 2004-03-23 Daniel Jacobowitz <drow@mvista.com>
3439 * linux-low.c (linux_wait): Clear all_processes list also.
3441 2004-03-12 Daniel Jacobowitz <drow@mvista.com>
3443 * linux-low.c: Include <errno.h>. Remove extern declaration of
3446 2004-03-12 Daniel Jacobowitz <drow@mvista.com>
3448 * gdbreplay.c, server.h, utils.c: Update copyright years.
3450 2004-03-04 Nathan J. Williams <nathanw@wasabisystems.com>
3452 * server.c (main): Print child status or termination signal from
3453 variable 'signal', not 'sig'.
3455 2004-03-04 Nathan J. Williams <nathanw@wasabisystems.com>
3457 * linux-low.c (linux_read_memory): Change return type to
3458 int. Check for and return error from ptrace().
3459 * target.c (read_inferior_memory): Change return type to int. Pass
3460 back return status from the_target->read_memory().
3461 * target.h (struct target_ops): Adapt *read_memory() prototype.
3463 (read_inferior_memory): Adapt prototype.
3464 * server.c (main): Return an error packet if
3465 read_inferior_memory() returns an error.
3467 2004-03-04 Daniel Jacobowitz <drow@mvista.com>
3469 * Makefile.in (distclean): Remove config.h, stamp-h, and config.log.
3470 Unify with other clean targets.
3472 2004-02-29 Daniel Jacobowitz <drow@mvista.com>
3474 * server.c (handle_v_cont): Call set_desired_inferior.
3476 2004-02-29 Daniel Jacobowitz <drow@mvista.com>
3478 * remote-utils.c (prepare_resume_reply): Always supply "thread:".
3480 2004-02-29 Daniel Jacobowitz <drow@mvista.com>
3482 * linux-low.c (linux_wait): Unblock async I/O.
3483 (linux_resume): Block and enable async I/O.
3484 * remote-utils.c (block_async_io, unblock_async_io): New functions.
3485 * server.h (block_async_io, unblock_async_io): Add prototypes.
3487 2004-02-29 Daniel Jacobowitz <drow@mvista.com>
3489 * remote-utils.c (remote_open): Print a status notice after
3491 * server.c (attach_inferior): Print a status notice after
3494 2004-02-29 Daniel Jacobowitz <drow@mvista.com>
3496 * linux-arm-low.c (arm_get_pc): Print out stop PC in debug mode.
3498 2004-02-26 Daniel Jacobowitz <drow@mvista.com>
3500 * remote-utils.c (write_enn): Use "E01" instead of "ENN" for the
3502 * server.c, target.h: Update copyright years.
3504 2004-02-25 Roland McGrath <roland@redhat.com>
3506 * target.h (struct target_ops): New member `read_auxv'.
3507 * server.c (handle_query): Handle qPart:auxv:read: query using that.
3508 * linux-low.c (linux_read_auxv): New function.
3509 (linux_target_ops): Initialize `read_auxv' member to that.
3511 2004-02-17 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
3513 Committed by Jim Blandy <jimb@redhat.com>.
3515 * linux-s390-low.c (s390_num_regs): Update.
3516 (s390_regmap): Remove control registers. Use __s390x__ predefine
3517 instead of GPR_SIZE to distiguish s390 and s390x targets.
3519 2004-01-31 Daniel Jacobowitz <drow@mvista.com>
3521 * linux-low.c: Update copyright year.
3522 (check_removed_breakpoint): Clear pending_is_breakpoint.
3523 (linux_set_resume_request, linux_queue_one_thread)
3524 (resume_status_pending_p): New functions.
3525 (linux_continue_one_thread): Use process->resume.
3526 (linux_resume): Only resume threads if there are no pending events.
3527 * linux-low.h (struct process_info): Add resume request
3530 2004-01-30 Daniel Jacobowitz <drow@mvista.com>
3532 * regcache.c (new_register_cache): Clear the allocated register
3533 buffer. Suggested by Atsushi Nemoto <anemo@mba.ocn.ne.jp>.
3535 2003-10-13 Daniel Jacobowitz <drow@mvista.com>
3537 * linux-low.c (linux_resume): Take a struct thread_resume *
3539 (linux_wait): Update call.
3540 (resume_ptr): New static variable.
3541 (linux_continue_one_thread): Renamed from
3542 linux_continue_one_process. Use resume_ptr.
3543 (linux_resume): Use linux_continue_one_thread.
3544 * server.c (handle_v_cont, handle_v_requests): New functions.
3545 (myresume): New function.
3546 (main): Handle 'v' case.
3547 * target.h (struct thread_resume): New type.
3548 (struct target_ops): Change argument of "resume" to struct
3550 (myresume): Delete macro.
3552 2003-08-08 H.J. Lu <hongjiu.lu@intel.com>
3554 * Makefile.in (install-only): Create dest dir. Support DESTDIR.
3555 (uninstall): Support DESTDIR.
3557 Mon Jul 21 20:09:34 UTC 2003 Brendan Conoboy <blc@redhat.com>
3559 * configure.srv: Add xscale*linux copy of arm*linux entry.
3561 2003-07-24 Daniel Jacobowitz <drow@mvista.com>
3563 * linux-arm-low.c (arm_reinsert_addr): New function.
3564 (the_low_target): Add arm_reinsert_addr.
3566 2003-07-08 Mark Kettenis <kettenis@gnu.org>
3568 * mem-break.c: Remove whitespace at end of file.
3570 2003-06-28 Daniel Jacobowitz <drow@mvista.com>
3572 * configure.in: Check whether we need to prototype strerror.
3573 * server.h: Optionally prototype strerror.
3574 * gdbreplay.c (perror_with_name): Use strerror.
3575 * linux-low.c (linux_attach_lwp): Use strerror.
3576 * utils.c (perror_with_name): Use strerror.
3577 * config.in, configure: Regenerated.
3579 2003-06-28 Daniel Jacobowitz <drow@mvista.com>
3581 * linux-sh-low.c (sh_regmap): Fix FP register offsets, reported by
3582 SUGIOKA Toshinobu <sugioka@itonet.co.jp>.
3584 2003-06-20 Daniel Jacobowitz <drow@mvista.com>
3586 * Makefile.in (SFILES): Update.
3587 * low-hppabsd.c, low-lynx.c, low-nbsd.c, low-sim.c, low-sparc.c,
3588 low-sun3.c: Remove files.
3590 2003-06-17 Daniel Jacobowitz <drow@mvista.com>
3592 * linux-low.c: Move comment to linux_thread_alive where it belonged.
3593 (linux_detach_one_process, linux_detach): New functions.
3594 (linux_target_ops): Add linux_detach.
3595 * server.c (main): Handle 'D' packet.
3596 * target.h (struct target_ops): Add "detach" member.
3597 (detach_inferior): Define.
3599 2003-06-13 Mark Kettenis <kettenis@gnu.org>
3601 From Kelley Cook <kelleycook@wideopenwest.com>:
3602 * configure.srv: Accept i[34567]86 variants.
3604 2003-06-05 Daniel Jacobowitz <drow@mvista.com>
3606 * linux-low.c (linux_wait_for_event): Correct comment typos.
3607 (linux_resume_one_process): Call check_removed_breakpoint.
3608 (linux_send_signal): New function.
3609 (linux_target_ops): Add linux_send_signal.
3610 * remote-utils.c (putpkt, input_interrupt): Use send_signal instead
3612 * target.h (struct target_ops): Add send_signal.
3614 2003-05-29 Jim Blandy <jimb@redhat.com>
3616 * linux-low.c (usr_store_inferior_registers): Transfer buf in
3617 PTRACE_XFER_TYPE-sized chunks, not int-sized chunks. Otherwise,
3618 if 'int' is smaller than PTRACE_XFER_TYPE, you end up throwing
3619 away part of the register's value.
3621 2003-03-26 Daniel Jacobowitz <drow@mvista.com>
3623 * linux-low.c (linux_create_inferior): Use __SIGRTMIN.
3624 (linux_wait_for_event, linux_init_signals): Likewise.
3626 2003-03-17 Daniel Jacobowitz <drow@mvista.com>
3628 * configure.in: Check for stdlib.h.
3629 * configure: Regenerated.
3630 * config.in: Regenerated.
3632 2003-01-04 Andreas Schwab <schwab@suse.de>
3634 * linux-m68k-low.c (m68k_num_regs): Define to 29 instead of 31.
3636 2003-01-02 Andrew Cagney <ac131313@redhat.com>
3638 * Makefile.in: Remove obsolete code.
3640 2002-11-20 Daniel Jacobowitz <drow@mvista.com>
3642 * linux-s390-low.c (s390_regmap): Check GPR_SIZE instead of
3643 defined(PT_FPR0_HI).
3645 2002-11-17 Stuart Hughes <seh@zee2.com>
3647 * linux-arm-low.c (arm_num_regs): Increase.
3648 (arm_regmap): Include status register.
3650 2002-11-17 Daniel Jacobowitz <drow@mvista.com>
3652 * linux-low.c (register_addr): Remove incorrect -1 check.
3654 2002-08-29 Daniel Jacobowitz <drow@mvista.com>
3656 * linux-low.c (linux_create_inferior): Call setpgid. Return
3658 (unstopped_p, linux_signal_pid): Remove.
3659 (linux_target_ops): Remove linux_signal_pid.
3660 * remote-utils.c (putpkt, input_interrupt): Use signal_pid
3661 global instead of target method.
3662 * target.h (struct target_ops): Remove signal_pid. Update comment
3663 for create_inferior.
3664 * server.c (signal_pid): New variable.
3665 (create_inferior): Set signal_pid. Block SIGTTOU and SIGTTIN in
3666 gdbserver. Set the child to be the foreground process group.
3667 (attach_inferior): Set signal_pid.
3669 2002-08-23 Daniel Jacobowitz <drow@mvista.com>
3671 * ChangeLog: New file, with entries from gdb/ChangeLog after GDB 5.2.
3673 2002-08-20 Jim Blandy <jimb@redhat.com>
3675 * Makefile.in (LDFLAGS): Allow the configure script to establish a
3678 2002-08-01 Andrew Cagney <cagney@redhat.com>
3680 * Makefile.in: Make chill references obsolete.
3682 2002-07-24 Kevin Buettner <kevinb@redhat.com>
3684 * configure.in (unistd.h): Add to AC_CHECK_HEADERS list.
3685 * configure: Regenerate.
3686 * config.in: Regenerate.
3688 2002-07-09 David O'Brien <obrien@FreeBSD.org>
3690 * gdbreplay.c (stdlib.h, unistd.h): Conditionaly include.
3691 (perror_with_name, remote_close, remote_open, expect, play): Static.
3693 2002-07-04 Michal Ludvig <mludvig@suse.cz>
3695 * linux-x86-64-low.c (x86_64_regmap): Make it an array of
3696 byte offsets instead of an array of indexes.
3697 (x86_64_store_gregset, x86_64_store_fpregset): Parameter made const.
3699 2002-06-13 Daniel Jacobowitz <drow@mvista.com>
3701 * regcache.c: Add comment.
3703 2002-06-11 Daniel Jacobowitz <drow@mvista.com>
3705 * thread-db.c: New file.
3706 * proc-service.c: New file.
3707 * acinclude.m4: New file.
3708 * Makefile.in: Add GDBSERVER_LIBS, gdb_proc_service_h,
3709 proc-service.o, and thread-db.o.
3710 (linux-low.o): Add USE_THREAD_DB.
3711 * acconfig.h: Add HAVE_PRGREGSET_T, HAVE_PRFPREGSET_T,
3712 HAVE_LWPID_T, HAVE_PSADDR_T, and PRFPREGSET_T_BROKEN.
3713 * aclocal.m4: Regenerated.
3714 * config.in: Regenerated.
3715 * configure: Regenerated.
3716 * configure.in: Check for proc_service.h, sys/procfs.h,
3717 thread_db.h, and linux/elf.h headrs.
3718 Check for lwpid_t, psaddr_t, prgregset_t, prfpregset_t, and
3719 PRFPREGSET_T_BROKEN. Introduce srv_thread_depfiles and USE_THREAD_DB.
3720 Check for -lthread_db and thread support.
3721 * configure.srv: Enable thread_db support for ARM, i386, MIPS,
3722 PowerPC, and SuperH.
3723 * i387-fp.c: Constify arguments.
3724 * i387-fp.h: Likewise.
3725 * inferiors.c: (struct thread_info): Renamed from
3726 `struct inferior_info'. Remove PID member. Use generic inferior
3727 list header. All uses updated.
3728 (inferiors, signal_pid): Removed.
3729 (all_threads): New variable.
3730 (get_thread): Define.
3731 (add_inferior_to_list): New function.
3732 (for_each_inferior): New function.
3733 (change_inferior_id): New function.
3734 (add_inferior): Removed.
3735 (remove_inferior): New function.
3736 (add_thread): New function.
3737 (free_one_thread): New function.
3738 (remove_thread): New function.
3739 (clear_inferiors): Use for_each_inferior and free_one_thread.
3740 (find_inferior): New function.
3741 (find_inferior_id): New function.
3742 (inferior_target_data): Update argument type.
3743 (set_inferior_target_data): Likewise.
3744 (inferior_regcache_data): Likewise.
3745 (set_inferior_regcache_data): Likewise.
3746 * linux-low.c (linux_bp_reinsert): Remove.
3747 (all_processes, stopping_threads, using_thrads)
3748 (struct pending_signals, debug_threads, pid_of): New.
3749 (inferior_pid): Replace with macro.
3750 (struct inferior_linux_data): Remove.
3751 (get_stop_pc, add_process): New functions.
3752 (linux_create_inferior): Restore SIGRTMIN+1 before calling exec.
3753 Use add_process and add_thread.
3754 (linux_attach_lwp): New function, based on old linux_attach. Use
3755 add_process and add_thread. Set stop_expected for new threads.
3756 (linux_attach): New function.
3757 (linux_kill_one_process): New function.
3758 (linux_kill): Kill all LWPs.
3759 (linux_thread_alive): Use find_inferior_id.
3760 (check_removed_breakpoints, status_pending_p): New functions.
3761 (linux_wait_for_process): Renamed from linux_wait_for_one_inferior.
3762 Update. Use WNOHANG. Wait for cloned processes also. Update process
3763 struct for the found process.
3764 (linux_wait_for_event): New function.
3765 (linux_wait): Use it. Support LWPs.
3766 (send_sigstop, wait_for_sigstop, stop_all_processes)
3767 (linux_resume_one_process, linux_continue_one_process): New functions.
3768 (linux_resume): Support LWPs.
3769 (REGISTER_RAW_SIZE): Remove.
3770 (fetch_register): Use register_size instead. Call supply_register.
3771 (usr_store_inferior_registers): Likewise. Call collect_register.
3773 (regsets_fetch_inferior_registers): Improve error message.
3774 (regsets_store_inferior_registers): Add debugging.
3775 (linux_look_up_symbols): Call thread_db_init if USE_THREAD_DB.
3776 (unstopped_p, linux_signal_pid): New functions.
3777 (linux_target_ops): Add linux_signal_pid.
3778 (linux_init_signals): New function.
3779 (initialize_low): Call it. Initialize using_threads.
3780 * regcache.c (inferior_regcache_data): Add valid
3782 (get_regcache): Fetch registers lazily. Add fetch argument
3783 and update all callers.
3784 (regcache_invalidate_one, regcache_invalidate): New
3786 (new_register_cache): Renamed from create_register_cache.
3787 Return the new regcache.
3788 (free_register_cache): Change argument to a void *.
3789 (registers_to_string, registers_from_string): Call get_regcache
3790 with fetch flag set.
3791 (register_data): Make static. Pass fetch flag to get_regcache.
3792 (supply_register): Call get_regcache with fetch flag clear.
3793 (collect_register): Call get_regcache with fetch flag set.
3794 (collect_register_as_string): New function.
3795 * regcache.h: Update.
3796 * remote-utils.c (putpkt): Flush after debug output and use
3798 Handle input interrupts while waiting for an ACK.
3799 (input_interrupt): Use signal_pid method.
3800 (getpkt): Flush after debug output and use stderr.
3801 (outreg): Use collect_register_as_string.
3802 (new_thread_notify, dead_thread_notify): New functions.
3803 (prepare_resume_reply): Check using_threads. Set thread_from_wait
3805 (look_up_one_symbol): Flush after debug output.
3806 * server.c (step_thread, server_waiting): New variables.
3807 (start_inferior): Don't use signal_pid. Update call to mywait.
3808 (attach_inferior): Update call to mywait.
3809 (handle_query): Handle qfThreadInfo and qsThreadInfo.
3810 (main): Don't fetch/store registers explicitly. Use
3811 set_desired_inferior. Support proposed ``Hs'' packet. Update
3814 (struct inferior_list, struct_inferior_list_entry): New.
3815 * target.c (set_desired_inferior): New.
3816 (write_inferior_memory): Constify.
3817 (mywait): New function.
3819 (struct target_ops): New signal_pid method.
3820 (mywait): Removed macro, added prototype.
3822 * linux-low.h (regset_func): Removed.
3823 (regset_fill_func, regset_store_func): New.
3824 (enum regset_type): New.
3825 (struct regset_info): Add type field. Use new operation types.
3826 (struct linux_target_ops): stop_pc renamed to get_pc.
3827 Add decr_pc_after_break and breakpoint_at.
3828 (get_process, get_thread_proess, get_process_thread)
3829 (strut process_info, all_processes, linux_attach_lwp)
3830 (thread_db_init): New.
3832 * linux-arm-low.c (arm_get_pc, arm_set_pc,
3833 arm_breakpoint, arm_breakpoint_len, arm_breakpoint_at): New.
3834 (the_low_target): Add new members.
3835 * linux-i386-low.c (i386_store_gregset, i386_store_fpregset)
3836 (i386_store_fpxregset): Constify.
3837 (target_regsets): Add new kind identifier.
3838 (i386_get_pc): Renamed from i386_stop_pc. Simplify.
3839 (i386_set_pc): Add debugging.
3840 (i386_breakpoint_at): New function.
3841 (the_low_target): Add new members.
3842 * linux-mips-low.c (mips_get_pc, mips_set_pc)
3843 (mips_breakpoint, mips_breakpoint_len, mips_reinsert_addr)
3844 (mips_breakpoint_at): New.
3845 (the_low_target): Add new members.
3846 * linux-ppc-low.c (ppc_get_pc, ppc_set_pc)
3847 (ppc_breakpoint, ppc_breakpoint_len, ppc_breakpoint_at): New.
3848 (the_low_target): Add new members.
3849 * linux-sh-low.c (sh_get_pc, sh_set_pc)
3850 (sh_breakpoint, sh_breakpoint_len, sh_breakpoint_at): New.
3851 (the_low_target): Add new members.
3852 * linux-x86-64-low.c (target_regsets): Add new kind
3855 2002-05-15 Daniel Jacobowitz <drow@mvista.com>
3857 From Martin Pool <mbp@samba.org>:
3858 * server.c (gdbserver_usage): New function.
3861 2002-05-14 Daniel Jacobowitz <drow@mvista.com>
3863 * mem-break.c (reinsert_breakpoint_by_bp): Correct typo
3866 2002-05-04 Andrew Cagney <ac131313@redhat.com>
3868 * Makefile.in: Remove obsolete code.
3870 2002-04-24 Michal Ludvig <mludvig@suse.cz>
3872 * linux-low.c (regsets_fetch_inferior_registers),
3873 (regsets_store_inferior_registers): Removed cast to int from
3875 * regcache.h: Added declaration of struct inferior_info.
3877 2002-04-20 Daniel Jacobowitz <drow@mvista.com>
3879 * inferiors.c (struct inferior_info): Add regcache_data.
3880 (add_inferior): Call create_register_cache.
3881 (clear_inferiors): Call free_register_cache.
3882 (inferior_regcache_data, set_inferior_regcache_data): New functions.
3883 * regcache.c (struct inferior_regcache_data): New.
3884 (registers): Remove.
3885 (get_regcache): New function.
3886 (create_register_cache, free_register_cache): New functions.
3887 (set_register_cache): Don't initialize the register cache here.
3888 (registers_to_string, registers_from_string, register_data): Call
3890 * regcache.h: Add prototypes.
3891 * server.h: Likewise.
3893 2002-04-20 Daniel Jacobowitz <drow@mvista.com>
3895 * mem-break.c: New file.
3896 * mem-break.h: New file.
3897 * Makefile.in: Add mem-break.o rule; update server.h
3899 * inferiors.c (struct inferior_info): Add target_data
3901 (clear_inferiors): Free target_data member if set.
3902 (inferior_target_data, set_inferior_target_data): New functions.
3903 * linux-i386-low.c (i386_breakpoint, i386_breakpoint_len)
3904 (i386_stop_pc, i386_set_pc): New. Add to the_low_target.
3905 * linux-low.c (linux_bp_reinsert): New variable.
3906 (struct inferior_linux_data): New.
3907 (linux_create_inferior): Use set_inferior_target_data.
3908 (linux_attach): Likewise. Call add_inferior.
3909 (linux_wait_for_one_inferior): New function.
3910 (linux_wait): Call it.
3911 (linux_write_memory): Add const.
3912 (initialize_low): Call set_breakpoint_data.
3913 * linux-low.h (struct linux_target_ops): Add breakpoint
3915 * server.c (attach_inferior): Remove extra add_inferior
3917 * server.h: Include mem-break.h. Update inferior.c
3919 * target.c (read_inferior_memory)
3920 (write_inferior_memory): New functions.
3921 * target.h (read_inferior_memory)
3922 (write_inferior_memory): Change macros to prototypes.
3923 (struct target_ops): Update comments. Add const to write_memory
3926 2002-04-11 Daniel Jacobowitz <drow@mvista.com>
3928 * linux-low.c (usr_store_inferior_registers): Support
3929 registers which are allowed to fail to store.
3930 * linux-low.h (linux_target_ops): Likewise.
3931 * linux-ppc-low.c (ppc_regmap): Support FPSCR.
3932 (ppc_cannot_store_register): FPSCR may not be storable.
3934 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
3936 * server.h: Include <string.h> if HAVE_STRING_H.
3937 * ChangeLog: Correct paths in last ChangeLog entry.
3939 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
3941 * linux-low.h: Remove obsolete prototypes.
3942 (struct linux_target_ops): New.
3943 (extern the_low_target): New.
3944 * linux-low.c (num_regs, regmap): Remove declarations.
3945 (register_addr): Use the_low_target explicitly.
3946 (fetch_register): Likewise.
3947 (usr_fetch_inferior_registers): Likewise.
3948 (usr_store_inferior_registers): Likewise.
3949 * linux-arm-low.c (num_regs): Remove.
3950 (arm_num_regs): Define.
3951 (arm_regmap): Renamed from regmap, made static.
3952 (arm_cannot_fetch_register): Renamed from cannot_fetch_register,
3954 (arm_cannot_store_register): Renamed from cannot_store_register,
3956 (the_low_target): New.
3957 * linux-i386-low.c (num_regs): Remove.
3958 (i386_num_regs): Define.
3959 (i386_regmap): Renamed from regmap, made static.
3960 (i386_cannot_fetch_register): Renamed from cannot_fetch_register,
3962 (i386_cannot_store_register): Renamed from cannot_store_register,
3964 (the_low_target): New.
3965 * linux-ia64-low.c (num_regs): Remove.
3966 (ia64_num_regs): Define.
3967 (ia64_regmap): Renamed from regmap, made static.
3968 (ia64_cannot_fetch_register): Renamed from cannot_fetch_register,
3970 (ia64_cannot_store_register): Renamed from cannot_store_register,
3972 (the_low_target): New.
3973 * linux-m68k-low.c (num_regs): Remove.
3974 (m68k_num_regs): Define.
3975 (m68k_regmap): Renamed from regmap, made static.
3976 (m68k_cannot_fetch_register): Renamed from cannot_fetch_register,
3978 (m68k_cannot_store_register): Renamed from cannot_store_register,
3980 (the_low_target): New.
3981 * linux-mips-low.c (num_regs): Remove.
3982 (mips_num_regs): Define.
3983 (mips_regmap): Renamed from regmap, made static.
3984 (mips_cannot_fetch_register): Renamed from cannot_fetch_register,
3986 (mips_cannot_store_register): Renamed from cannot_store_register,
3988 (the_low_target): New.
3989 * linux-ppc-low.c (num_regs): Remove.
3990 (ppc_num_regs): Define.
3991 (ppc_regmap): Renamed from regmap, made static.
3992 (ppc_cannot_fetch_register): Renamed from cannot_fetch_register,
3994 (ppc_cannot_store_register): Renamed from cannot_store_register,
3996 (the_low_target): New.
3997 * linux-s390-low.c (num_regs): Remove.
3998 (s390_num_regs): Define.
3999 (s390_regmap): Renamed from regmap, made static.
4000 (s390_cannot_fetch_register): Renamed from cannot_fetch_register,
4002 (s390_cannot_store_register): Renamed from cannot_store_register,
4004 (the_low_target): New.
4005 * linux-sh-low.c (num_regs): Remove.
4006 (sh_num_regs): Define.
4007 (sh_regmap): Renamed from regmap, made static.
4008 (sh_cannot_fetch_register): Renamed from cannot_fetch_register,
4010 (sh_cannot_store_register): Renamed from cannot_store_register,
4012 (the_low_target): New.
4013 * linux-x86-64-low.c (x86_64_regmap): Renamed from regmap.
4014 (the_low_target): New.
4016 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
4018 * Makefile.in: Add stamp-h target.
4019 * configure.in: Create stamp-h.
4020 * configure: Regenerated.
4022 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
4024 * inferiors.c: New file.
4025 * target.c: New file.
4026 * target.h: New file.
4027 * Makefile.in: Add target.o and inferiors.o. Update
4029 * linux-low.c (inferior_pid): New static variable,
4030 moved from server.c.
4031 (linux_create_inferior): Renamed from create_inferior.
4032 Call add_inferior. Return 0 on success instead of a PID.
4033 (linux_attach): Renamed from myattach.
4034 (linux_kill): Renamed from kill_inferior. Call clear_inferiors ().
4035 (linux_thread_alive): Renamed from mythread_alive.
4036 (linux_wait): Renamed from mywait. Call clear_inferiors () if the
4038 (linux_resume): Renamed from myresume. Add missing ``return 0''.
4039 (regsets_store_inferior_registers): Correct error message.
4040 Add missing ``return 0''.
4041 (linux_fetch_registers): Renamed from fetch_inferior_registers.
4042 (linux_store_registers): Renamed from store_inferior_registers.
4043 (linux_read_memory): Renamed from read_inferior_memory.
4044 (linux_write_memory): Renamed from write_inferior_memory.
4045 (linux_target_ops): New structure.
4046 (initialize_low): Call set_target_ops ().
4047 * remote-utils.c (unhexify): New function.
4048 (hexify): New function.
4049 (input_interrupt): Send signals to ``signal_pid''.
4050 * server.c (inferior_pid): Remove.
4051 (start_inferior): Update create_inferior call.
4052 (attach_inferior): Call add_inferior.
4053 (handle_query): New function.
4054 (main): Call handle_query for `q' packets.
4055 * server.h: Include "target.h". Remove obsolete prototypes.
4056 Add prototypes for "inferiors.c", "target.c", hexify, and unhexify.
4058 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
4060 * Makefile.in: Add WARN_CFLAGS. Update configury
4062 * configure.in: Check for <string.h>
4063 * configure: Regenerate.
4064 * config.in: Regenerate.
4065 * gdbreplay.c: Include needed system headers.
4066 (remote_open): Remove strchr prototype.
4067 * linux-low.h: Correct #ifdef to HAVE_LINUX_USRREGS.
4068 * regcache.c (supply_register): Change buf argument to const void *.
4069 (supply_register_by_name): Likewise.
4070 (collect_register): Change buf argument to void *.
4071 (collect_register_by_name): Likewise.
4072 * regcache.h: Add missing prototypes.
4073 * remote-utils.c: Include <arpa/inet.h> for inet_ntoa.
4074 * server.c (handle_query): New function.
4075 (attached): New static variable, moved out of main.
4076 (main): Quiet longjmp clobber warnings.
4077 * server.h: Add ATTR_NORETURN and ATTR_FORMAT. Update prototypes.
4078 * utils.c (error): Remove NORETURN.