* mem-break.c (enum bkpt_type): New.
[deliverable/binutils-gdb.git] / gdb / gdbserver / ChangeLog
1 2010-03-24 Pedro Alves <pedro@codesourcery.com>
2
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
15 pointer.
16
17 2010-03-24 Pedro Alves <pedro@codesourcery.com>
18
19 * server.c (handle_query): Assign, not compare.
20
21 2010-03-24 Pedro Alves <pedro@codesourcery.com>
22
23 Teach linux gdbserver to step-over-breakpoints.
24
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
28 the new cloned LWP.
29 (get_pc): New.
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
41 perspective.
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
50 wait status.
51 (send_sigstop): Don't clear stop_expected. Always set it,
52 instead.
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.
104
105 2010-03-23 Michael Snyder <msnyder@vmware.com>
106
107 * server.c (crc32): New function.
108 (handle_query): Add handling for 'qCRC:' request.
109
110 2010-03-23 Pedro Alves <pedro@codesourcery.com>
111
112 * linux-x86-low.c (x86_linux_prepare_to_resume): Clear DR6 if the
113 lwp had been stopped by a watchpoint.
114
115 2010-03-16 Pedro Alves <pedro@codesourcery.com>
116
117 * server.h (internal_error): Declare.
118 (gdb_assert, ASSERT_FUNCTION, gdb_assert_fail): Define.
119 * utils.c (internal_error): New function.
120
121 2010-03-15 Andreas Schwab <schwab@redhat.com>
122
123 * configure.srv: Fix typo setting srv_regobj.
124
125 2010-03-15 Pedro Alves <pedro@codesourcery.com>
126
127 * linux-low.c (fetch_register): Avoid passing a non string literal
128 format to `error'.
129 (usr_store_inferior_registers): Ditto.
130
131 2010-03-14 Pedro Alves <pedro@codesourcery.com>
132
133 * linux-low.c (linux_write_memory): Bail out early if peeking
134 memory failed.
135
136 2010-03-14 Pedro Alves <pedro@codesourcery.com>
137
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
143 directly.
144 (linux_resume_one_lwp): Clear the lwp's stopped_by_watchpoint
145 field.
146 (linux_stopped_by_watchpoint): Rewrite.
147 (linux_stopped_data_address): Rewrite.
148
149 2010-03-06 Simo Melenius <simo.melenius@iki.fi>
150
151 * linux-low.c (linux_wait_for_lwp): Fetch the regcache after
152 switching the current inferior, not before.
153
154 2010-03-01 H.J. Lu <hongjiu.lu@intel.com>
155
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.
167 (i386.o): New.
168 (i386.c): Likewise.
169 (i386-linux.o): Likewise.
170 (i386-linux.c): Likewise.
171 (amd64.o): Likewise.
172 (amd64.c): Likewise.
173 (amd64-linux.o): Likewise.
174 (amd64-linux.c): Likewise.
175
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.
195
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.
200
201 2010-02-23 Maxim Kuvyrkov <maxim@codesourcery.com>
202
203 * configure.ac: Check for libdl. If it is not available link against
204 static libthread_db.
205 * configure: Regenerate.
206
207 2010-02-22 Pedro Alves <pedro@codesourcery.com>
208
209 PR9605
210
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.
214
215 2010-02-12 Doug Evans <dje@google.com>
216
217 * linux-low.c (linux_supports_tracefork_flag): Document.
218 (linux_look_up_symbols): Add comment.
219
220 2010-02-03 H.J. Lu <hongjiu.lu@intel.com>
221
222 * regcache.c (supply_register): Clear regcache if buf is NULL.
223
224 2010-02-02 Nicolas Roche <roche@sourceware.org>
225 Joel Brobecker <brobecker@adacore.com>
226
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.
230
231 2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
232
233 * linux-arm-low.c (thumb_breakpoint_len): Delete.
234 (thumb2_breakpoint): New.
235 (arm_breakpoint_at): Check for Thumb-2 breakpoints.
236
237 2010-01-29 Daniel Jacobowitz <dan@codesourcery.com>
238
239 * linux-low.c (get_stop_pc): Check for SIGTRAP.
240 (linux_wait_for_event_1): Handle SIGILL and SIGSEGV as possible
241 breakpoints.
242
243 2010-01-21 Pedro Alves <pedro@codesourcery.com>
244
245 * linux-ppc-low.c (ppc_arch_setup): Adjust to regcache changes.
246
247 2010-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
248
249 * linux-s390-low.c (s390_collect_ptrace_register)
250 (s390_supply_ptrace_register): Adjust it for the new regcache parameter.
251
252 2010-01-21 Doug Evans <dje@google.com>
253
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.
262
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.
265
266 2010-01-21 Pedro Alves <pedro@codesourcery.com>
267
268 * proc-service.c (ps_lgetregs): Don't refetch registers from the
269 target.
270
271 2010-01-21 Pedro Alves <pedro@codesourcery.com>
272
273 * spu-low.c (spu_fetch_registers, spu_store_registers): Change
274 prototype to take a regcache. Adjust.
275
276 2010-01-20 Pedro Alves <pedro@codesourcery.com>
277
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
289 fetching registers.
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
305 prototype.
306 (get_pc, set_pc, collect_ptrace_register, supply_ptrace_register):
307 Change prototype.
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
318 regcache. Adjust.
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.
325 Adjust.
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.
342 Adjust.
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):
347 Adjust.
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.
357 Adjust.
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):
363 Ditto.
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
378 regcache. Adjust.
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
388 regcache. Adjust.
389 * win32-i386-low.c (i386_fetch_inferior_register)
390 (i386_store_inferior_register): Change prototype to take a
391 regcache. Adjust.
392 * win32-low.c (child_fetch_inferior_registers)
393 (child_store_inferior_registers): Change prototype to take a
394 regcache. Adjust.
395 (win32_wait): Adjust.
396 (win32_fetch_inferior_registers): Change prototype to take a
397 regcache. Adjust.
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.
401
402 2010-01-20 Doug Evans <dje@google.com>
403
404 * linux-low.c (linux_create_inferior): Wrap use of __SIGRTMIN in
405 #ifdef.
406 (linux_wait_for_event1, linux_init_signals): Ditto.
407 (W_STOPCODE): Provide definition if missing.
408
409 2010-01-13 Vladimir Prus <vladimir@codesourcery.com>
410
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):
418 New.
419 (handle_query): Handle qXfer:threads. Announce availability
420 thereof.
421 * target.h (struct target_ops): New field core_of_thread.
422
423 2010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
424
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.
449
450 2010-01-01 Joel Brobecker <brobecker@adacore.com>
451
452 * server.c (gdbserver_version): Update copyright year to 2010.
453 * gdbreplay.c (gdbreplay_version): Likewise.
454
455 2009-12-28 Doug Evans <dje@google.com>
456
457 * linux-low.c: Delete inclusion of ansidecl.h, elf/common.h,
458 elf/external.h. Include <elf.h> instead but only if necessary.
459
460 2009-12-28 Pedro Alves <pedro@codesourcery.com>
461
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
469 passed in process.
470
471 2009-12-21 Doug Evans <dje@google.com>
472
473 * linux-x86-low.c: Delete outdated comment about Elf32_Phdr.
474
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.
480
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.
486
487 * linux-low.c (my_waitpid): Delete unnecessary prototype.
488
489 2009-12-18 Doug Evans <dje@google.com>
490
491 * event-loop.c: Include unistd.h if it exists.
492
493 * linux-low.c (my_waitpid): Move definition away from being in
494 between linux_tracefork_child/linux_test_for_tracefork.
495
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.
499
500 2009-12-16 Doug Evans <dje@google.com>
501
502 * linux-low.c (linux_read_memory): Fix argument to read.
503
504 2009-11-26 Pedro Alves <pedro@codesourcery.com>
505
506 * win32-low.c (get_child_debug_event): On EXIT_THREAD_DEBUG_EVENT
507 events, don't leave current_inferior pointing at null.
508
509 2009-11-26 Pedro Alves <pedro@codesourcery.com>
510
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.
516
517 2009-11-26 Pedro Alves <pedro@codesourcery.com>
518
519 * win32-low.c (win32_add_one_solib): If the dll name is
520 "ntdll.dll", prepend the system directory to the dll path.
521
522 2009-11-17 Daniel Jacobowitz <dan@codesourcery.com>
523
524 * m68k-tdep.c (m68k_gdbarch_init): Reuse previous initialization.
525
526 2009-11-17 Nathan Sidwell <nathan@codesourcery.com>
527 Vladimir Prus <vladimir@codesourcery.com>
528
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.
535
536 2009-11-16 Pedro Alves <pedro@codesourcery.com>
537
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
544 to thread_db_free.
545 (thread_db_free): Add `detaching' parameter. Only
546 call td_ta_clear_event if detaching from process.
547
548 2009-11-12 Maxim Kuvyrkov <maxim@codesourcery.com>
549
550 * thread-db.c (thread_db_free): Fix typo.
551
552 2009-11-11 Paul Pluzhnikov <ppluzhnikov@google.com>
553
554 PR gdb/10838
555 * thread-db.c (thread_db_free): Call td_ta_clear_event.
556
557 2009-11-03 Nathan Sidwell <nathan@codesourcery.com>
558
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
562 needed.
563 * configure: Rebuilt.
564
565 2009-10-29 Sandra Loosemore <sandra@codesourcery.com>
566
567 PR gdb/10783
568
569 * server.c (handle_search_memory_1): Correct read_addr initialization
570 in loop for searching subsequent chunks.
571
572 2009-10-29 Paul Pluzhnikov <ppluzhnikov@google.com>
573
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.
579
580 2009-10-28 Paul Pluzhnikov <ppluzhnikov@google.com>
581
582 PR gdb/10757
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.
587
588 2009-10-13 Pedro Alves <pedro@codesourcery.com>
589
590 * proc-service.c (ps_lgetregs): Formatting.
591
592 2009-10-08 Paul Pluzhnikov <ppluzhnikov@google.com>
593
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
597 thread_db.
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.
616
617 2009-09-27 Ulrich Weigand <uweigand@de.ibm.com>
618
619 * spu-low.c (spu_kill): Wait for inferior to terminate.
620 Call clear_inferiors.
621 (spu_detach): Call clear_inferiors.
622
623 2009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
624
625 * aclocal.m4: Regenerate.
626 * config.in: Likewise.
627 * configure: Likewise.
628
629 2009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
630
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.
635
636 2009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
637
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.
643
644 2009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
645
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.
656
657 2009-07-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
658
659 * Makefile.in (datarootdir): New variable.
660
661 2009-07-28 Daniel Jacobowitz <dan@codesourcery.com>
662
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.
678
679 2009-07-28 Daniel Jacobowitz <dan@codesourcery.com>
680
681 * linux-low.c (linux_kill_one_lwp): Adjust kernel workaround to skip
682 the main thread again.
683
684 2009-07-06 Aleksandar Ristovski <aristovski@qnx.com>
685
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.
694
695 2009-07-05 Danny Backx <dannybackx@users.sourceforge.net>
696
697 * configure.srv (i[34567]86-*-mingw32ce*): Add i386-low.o to
698 srv_tgtobj.
699
700 2009-07-04 Danny Backx <dannybackx@users.sourceforge.net>
701 Pedro Alves <pedro@codesourcery.com>
702
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.
709
710 2009-06-30 Doug Evans <dje@google.com>
711 Pierre Muller <muller@ics.u-strasbg.fr>
712
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
728 provided.
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,
732 prepare_to_resume.
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,
747 prepare_to_resume.
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.
752 (paddress): 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.
776
777 2009-06-25 Pedro Alves <pedro@codesourcery.com>
778
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.
785
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.
797
798 2009-06-24 Pierre Muller <muller@ics.u-strasbg.fr>
799
800 * server.c (handle_v_kill): Pass signal_pid to
801 kill_inferior if multi_process is zero.
802
803 2009-06-23 Aleksandar Ristovski <aristovski@qnx.com>
804
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'.
808
809 2009-06-22 Aleksandar Ristovski <aristovski@qnx.com>
810
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
816 regno 0.
817
818 2009-06-19 Aleksandar Ristovski <aristovski@qnx.com>
819 Pedro Alves <pedro@codesourcery.com>
820
821 * target.h (struct target_ops) <supports_multi_process>: New
822 callback.
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
829 callback.
830
831 2009-05-24 Doug Evans <dje@google.com>
832
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.
836 All callers updated.
837
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)
840 directly.
841
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.
845
846 2009-05-23 Doug Evans <dje@google.com>
847
848 * linux-low.c (linux_resume_one_lwp): Change type of first arg
849 from struct inferior_list_entry * to struct lwp_info *.
850 All callers updated.
851
852 2009-05-13 Doug Evans <dje@google.com>
853
854 * linux-x86-low.c: Don't include assert.h.
855 (x86_siginfo_fixup): Use fatal, not assert.
856 (x86_arch_setup): Fix comment.
857
858 2009-05-12 Doug Evans <dje@google.com>
859
860 Biarch support for i386/amd64 gdbserver.
861 * Makefile.in (SFILES): Remove linux-i386-low.c, linux-x86-64-low.c.
862 Add linux-x86-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
869 linux-x86-low.o.
870 (x86_64-linux srv_tgtobj): Replace linux-x86-64-low.o with
871 linux-x86-low.o.
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.
881
882 2009-05-07 Doug Evans <dje@google.com>
883
884 * linux-low.c (regsets_fetch_inferior_registers): Fix memory leak.
885 (regsets_store_inferior_registers): Ditto.
886
887 2009-05-06 Pedro Alves <pedro@codesourcery.com>
888
889 PR server/10048
890
891 * linux-low.c (must_set_ptrace_flags): Delete.
892 (linux_create_inferior): Set `lwp->must_set_ptrace_flags' instead
893 of the global.
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.
898
899 2009-04-30 Doug Evans <dje@google.com>
900
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.
909
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.
914
915 2009-04-19 Danny Backx <dannybackx@users.sourceforge.net>
916
917 * configure.srv: Add x86 Windows CE target.
918
919 2009-04-03 Ulrich Weigand <uweigand@de.ibm.com>
920
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.
927
928 2009-04-03 Ulrich Weigand <uweigand@de.ibm.com>
929
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.
941
942 2009-04-02 Pedro Alves <pedro@codesourcery.com>
943
944 * linux-low.c (usr_store_inferior_registers): Declare local `pid'
945 variable.
946
947 2009-04-01 Pedro Alves <pedro@codesourcery.com>
948
949 Implement the multiprocess extensions, and add linux multiprocess
950 support.
951
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
958 to ptid_t.
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
980 parameter. Adjust.
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
991 return type to int.
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
995 to ptid.
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.
1010 (hexchars): New.
1011 (ishex, unpack_varlen_hex, write_ptid, hex_or_minus_one,
1012 read_ptid): New.
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
1018 to ptid_t.
1019 (attached): Delete.
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
1024 ptid_t.
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
1031 "qAttached:PID".
1032 (handle_v_cont): Adjust to use ptids. Adjust to mywait interface
1033 changes.
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
1041 change.
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
1046 variants.
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
1067 new_inferior here.
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
1071 multiple processes.
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
1086 ptid_t. Adjust.
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.
1095 Adjust.
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
1100 ptids.
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
1106 `thread_db_active'.
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
1115 per-process data.
1116 (find_one_thread): Change argument type to ptid_t. Adjust to
1117 per-process data.
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
1124 processes table.
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
1135 processes table.
1136 (child_fetch_inferior_registers, child_store_inferior_registers):
1137 Adjust.
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
1141 table.
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
1148 processes table.
1149
1150 2009-04-01 Pedro Alves <pedro@codesourcery.com>
1151
1152 Non-stop mode support.
1153
1154 * server.h (non_stop): Declare.
1155 (gdb_client_data, handler_func): Declare.
1156 (delete_file_handler, add_file_handler, start_event_loop):
1157 Declare.
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
1169 notifications here.
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
1177 interface changes.
1178 (attach_inferior): In non-stop mode, don't wait for the target
1179 here.
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
1186 and non-stop mode.
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
1200 loop.
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
1207 general_thread.
1208 * event-loop.c: New.
1209 * Makefile.in (OBJ): Add event-loop.o.
1210 (event-loop.o): New rule.
1211
1212 * linux-low.h (pid_of): Moved here.
1213 (lwpid_of): New.
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.
1220 (delete_lwp): 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
1228 lwpid_of.
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.
1247 (linux_wait): 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
1251 thread.
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
1257 threads.
1258 (my_waitpid): Reimplement. Emulate __WALL.
1259 (linux_request_interrupt, linux_read_offsets, linux_xfer_siginfo):
1260 Use lwpid_of.
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.
1272
1273 2009-04-01 Pedro Alves <pedro@codesourcery.com>
1274
1275 Decouple target code from remote protocol.
1276
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.
1281 (mywait): Likewise.
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
1285 declarations.
1286 (prepare_resume_reply): Change prototype to take a
1287 target_waitstatus.
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.
1293 Adjust.
1294 (handle_query): For qGetTLSAddr, parse the thread id with strtol,
1295 not as an address.
1296 (handle_v_cont, handle_v_attach, handle_v_run, handle_v_kill)
1297 (handle_v_requests, myresume): Remove "status" and "signal"
1298 parameters. Adjust.
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.
1304
1305 * linux-low.c (linux_wait): Adjust to new target_ops->wait
1306 interface.
1307 * spu-low.c (spu_wait): Adjust.
1308 * win32-low.c (enum target_waitkind, struct target_waitstatus):
1309 Delete.
1310 (win32_wait): Adjust.
1311
1312 2009-04-01 Pedro Alves <pedro@codesourcery.com>
1313
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
1329 change.
1330 * win32-low.c (win32_detach, win32_resume): Ditto.
1331
1332 2009-04-01 Pedro Alves <pedro@codesourcery.com>
1333
1334 * linux-low.c (linux_wait_for_event): Don't clear the `stepping'
1335 flag.
1336 (wait_for_sigstop): Don't leave a finished single-step SIGTRAP
1337 pending.
1338 (linux_continue_one_thread): Only preserve the stepping flag if
1339 there's a pending breakpoint.
1340
1341 2009-03-31 Pedro Alves <pedro@codesourcery.com>
1342
1343 * server.c (main): After the inferior having exited, call
1344 remote_close before exiting gdbserver.
1345
1346 2009-03-25 Thiago Jung Bauermann <bauerman@br.ibm.com>
1347
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
1352 size of the FPSCR.
1353
1354 2009-03-23 Pedro Alves <pedro@codesourcery.com>
1355
1356 * server.c (handle_query) Whitespace and formatting.
1357
1358 2009-03-22 Pedro Alves <pedro@codesourcery.com>
1359
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.
1368
1369 2009-03-22 Pedro Alves <pedro@codesourcery.com>
1370
1371 * inferiors.c (find_inferior): Make it safe for the callback
1372 function to delete the currently iterated inferior.
1373
1374 2009-03-22 Pedro Alves <pedro@codesourcery.com>
1375
1376 * Makefile.in (linuw_low_h): Move higher.
1377 (thread-db.o): Depend on $(linux_low_h).
1378
1379 2009-03-17 Pedro Alves <pedro@codesourcery.com>
1380
1381 Rename "process" to "lwp" throughout.
1382
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):
1412 Adjust.
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.
1426
1427 2009-03-14 Pedro Alves <pedro@codesourcery.com>
1428
1429 * server.c (handle_query): Handle "qAttached".
1430
1431 2009-03-13 Nathan Sidwell <nathan@codesourcery.com>
1432
1433 * Makefile.in, hostio-errno.c, errno.c, xtensa-xtregs.c: Change to
1434 GPLv3, update license URL.
1435
1436 2009-03-01 Doug Evans <dje@google.com>
1437
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.
1443
1444 2009-02-14 Pierre Muller <muller@ics.u-strasbg.fr>
1445
1446 * remote-utils.c (getpkt): Also generate remote-debug
1447 information if noack_mode is set.
1448
1449 2009-02-06 Pedro Alves <pedro@codesourcery.com>
1450
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.
1456
1457 2009-01-26 Pedro Alves <pedro@codesourcery.com>
1458
1459 * server.c (gdbserver_usage): Mention --remote-debug.
1460 (main): Accept '--remote-debug' switch.
1461
1462 2009-01-18 Doug Evans <dje@google.com>
1463
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
1469 user upon failure.
1470 (handle_v_run): Ditto. Call freeargv.
1471 * server.h (freeargv): Declare.
1472 * utils.c (freeargv): New fn.
1473
1474 2009-01-15 Doug Evans <dje@google.com>
1475
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 *.
1480
1481 2009-01-14 Pedro Alves <pedro@codesourcery.com>
1482
1483 * win32-low.c (get_child_debug_event): Issue a final DBG_CONTINUE
1484 when handling a EXIT_PROCESS_DEBUG_EVENT.
1485
1486 2009-01-06 Joel Brobecker <brobecker@adacore.com>
1487
1488 * gdbreplay.c (gdbreplay_version): Update copyright year.
1489 * server.c (gdbserver_version): Likewise.
1490
1491 2009-01-05 Doug Evans <dje@google.com>
1492
1493 * linux-low.c (linux_attach_lwp): Add some comments/fixmes.
1494 (handle_extended_wait): Improve comment.
1495
1496 2008-12-13 Doug Evans <dje@google.com>
1497
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.
1507 * server.c: Ditto.
1508 * target.c: Ditto.
1509 * win32-low.c: Ditto.
1510
1511 2008-12-12 Doug Evans <dje@google.com>
1512
1513 * linux-low.c (linux_wait_for_process): Don't clobber current_inferior
1514 in debugging printf.
1515
1516 * linux-low.c (handle_extended_wait): Simplify, use my_waitpid.
1517
1518 2008-12-09 Doug Evans <dje@google.com>
1519
1520 * linux-low.h (struct process_info): Delete member tid, unused.
1521 * thread-db.c (find_one_thread): Update.
1522 (maybe_attach_thread): Update.
1523
1524 2008-12-02 Pedro Alves <pedro@codesourcery.com>
1525
1526 * target.h (struct target_ops): Add qxfer_osdata member.
1527 * linux-low.c: Include ctype.h and pwd.h and sys/types.h
1528 and dirent.h.
1529 (linux_qxfer_osdata): New functions.
1530 (linux_target_ops): Register linux_qxfer_osdata as qxfer_osdata
1531 callback.
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.
1539
1540 2008-11-24 Doug Evans <dje@google.com>
1541
1542 * Makefile.in (VERSION,DIST,LINT,LINTFLAGS): Delete, unused.
1543
1544 2008-11-24 Daniel Jacobowitz <dan@codesourcery.com>
1545
1546 * server.c (handle_v_run): Always use the supplied argument list.
1547
1548 2008-11-19 Bob Wilson <bob.wilson@acm.org>
1549
1550 * xtensa-xtregs.c (XTENSA_ELF_XTREG_SIZE): Change to 4.
1551 (xtensa_regmap_table): Add entry for scompare1.
1552
1553 2008-11-18 Thiago Jung Bauermann <bauerman@br.ibm.com>
1554
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
1566 in 32-bits.
1567
1568 2008-11-14 Daniel Gutson <dgutson@codesourcery.com>
1569
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.
1577
1578 2008-10-21 Doug Evans <dje@google.com>
1579
1580 * Makefile.in (BFD_DIR,BFD,BFD_SRC,BFD_CFLAGS): Delete.
1581 (READLINE_DIR,READLINE_DEP): Delete.
1582 (INTERNAL_CFLAGS): Update.
1583 (LINTFLAGS): Update.
1584
1585 2008-10-10 Pedro Alves <pedro@codesourcery.com>
1586
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].
1589
1590 2008-09-08 Pedro Alves <pedro@codesourcery.com>
1591
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.
1595
1596 2008-09-04 Daniel Jacobowitz <dan@codesourcery.com>
1597
1598 * configure.srv: Merge MIPS and MIPS64.
1599
1600 2008-08-24 Maciej W. Rozycki <macro@linux-mips.org>
1601
1602 * Makefile.in (uninstall): Apply $(EXEEXT) too.
1603
1604 2008-08-18 Luis Machado <luisgpm@br.ibm.com>
1605
1606 * Makefile.in: Add required vsx dependencies.
1607
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.
1616
1617 * configure.srv: Add new VSX dependencies.
1618
1619 2008-08-12 Pedro Alves <pedro@codesourcery.com>
1620
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
1627 qSupported.
1628 (main): Reset noack_mode on every connection.
1629 * server.h (noack_mode): Declare.
1630
1631 2008-08-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1632
1633 * Makefile.in (GDBREPLAY_OBS): New variable.
1634 (gdbreplay$(EXEEXT)): Use it to avoid unportable $^.
1635
1636 2008-08-05 Ulrich Weigand <uweigand@de.ibm.com>
1637 Daniel Jacobowitz <dan@codesourcery.com>
1638
1639 * linux-low.c (linux_resume_one_process): Ignore ESRCH.
1640 (usr_store_inferior_registers): Likewise.
1641 (regsets_store_inferior_registers): Likewise.
1642
1643 2008-07-31 Rolf Jansen <rj@surtec.com>
1644 Pedro Alves <pedro@codesourcery.com>
1645
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.
1652
1653 2008-07-28 Doug Kwan <dougkwan@google.com>
1654
1655 * linux-low.c (sys/dir.h, sys/user.h): Remove includes.
1656 (linux_write_memory): Remove declaration of errno.
1657
1658 2008-07-12 Ulrich Weigand <uweigand@de.ibm.com>
1659
1660 * linux-low.c (handle_extended_wait): Do not use "status"
1661 variable uninitialized.
1662
1663 2008-07-07 Pedro Alves <pedro@codesourcery.com>
1664
1665 * server.c (handle_v_attach): Inhibit reporting dll changes.
1666
1667 2008-06-27 Pedro Alves <pedro@codesourcery.com>
1668
1669 * remote-utils.c (prepare_resume_reply): If requested, don't
1670 output "thread:TID" in the T stop reply.
1671
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
1675 and qsThreadInfo.
1676 (handle_v_requests): If requested, disable support for vCont.
1677 (gdbserver_show_disableable): New.
1678 (main): Handle --disable-packet and --disable-packet=LIST.
1679
1680 * server.h (disable_packet_vCont, disable_packet_Tthread)
1681 (disable_packet_qC, disable_packet_qfThreadInfo): Declare.
1682
1683 2008-06-20 Carlos O'Donell <carlos@codesourcery.com>
1684
1685 * server.c (gdbserver_usage): Mention --version.
1686
1687 2008-06-06 Daniel Jacobowitz <dan@codesourcery.com>
1688
1689 * Makefile.in (gdbreplay.o): New rule.
1690
1691 2008-06-06 Joseph Myers <joseph@codesourcery.com>
1692
1693 * gdbreplay.c (gdbreplay_version): Say gdbreplay in version
1694 message, not gdbserver.
1695
1696 2008-06-05 Vladimir Prus <vladimir@codesourcery.com>
1697 Nathan Sidwell <nathan@codesourcery.com>
1698 Joseph Myers <joseph@codesourcery.com>
1699
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.
1710
1711 2008-06-04 Daniel Jacobowitz <dan@codesourcery.com>
1712
1713 * linux-arm-low.c (thumb_breakpoint, thumb_breakpoint_len): New.
1714 (arm_breakpoint_at): Handle Thumb.
1715 (the_low_target): Add comment.
1716
1717 2008-05-29 Ulrich Weigand <uweigand@de.ibm.com>
1718
1719 * linux-ppc-low.c (ppc_collect_ptrace_register): Clear buffer.
1720
1721 2008-05-09 Doug Evans <dje@google.com>
1722
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.
1728
1729 2008-05-08 Ulrich Weigand <uweigand@de.ibm.com>
1730
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.
1736
1737 2008-05-03 Ulrich Weigand <uweigand@de.ibm.com>
1738
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
1747 to srv_xmlfiles.
1748
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.
1759 (clean): Update.
1760
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.
1777
1778 * inferiors.c (clear_inferiors): Reset current_inferior.
1779
1780 2008-04-23 Paolo Bonzini <bonzini@gnu.org>
1781
1782 * acinclude.m4: Add override.m4.
1783 * configure: Regenerate.
1784
1785 2008-04-21 Ulrich Weigand <uweigand@de.ibm.com>
1786
1787 * linux-ppc-low.c (ppc_arch_setup): Reset ppc_hwcap after the
1788 initial call to init_register_ppc64.
1789
1790 2008-04-21 Ulrich Weigand <uweigand@de.ibm.com>
1791
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.
1795
1796 2008-04-17 Ulrich Weigand <uweigand@de.ibm.com>
1797
1798 * configure.srv [powerpc64-*-linux*]: Remove powerpc-e500.o from
1799 srv_regobj. Remove rs6000/powerpc-e500.xml and rs6000/power-spe.xml
1800 from reg_xmlfiles.
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.
1815
1816 2008-04-17 Daniel Jacobowitz <dan@codesourcery.com>
1817
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
1824 use_regsets_p.
1825 (initialize_low): Allocate disabled_regsets.
1826
1827 2008-04-14 Daniel Jacobowitz <dan@codesourcery.com>
1828
1829 * Makefile.in (LIBOBJS): New.
1830 (OBS): Use LIBOBJS.
1831 (memmem.o): New rule.
1832 * configure.ac: Use AC_CONFIG_LIBOBJ_DIR and check for memmem.
1833 * configure: Regenerated.
1834
1835 2008-04-04 Ulrich Weigand <uweigand@de.ibm.com>
1836
1837 * server.c (handle_query): Never return "unsupported" for
1838 qXfer:features:read queries.
1839
1840 2008-03-27 Ulrich Weigand <uweigand@de.ibm.com>
1841
1842 * server.c (get_features_xml): Fix inverted condition.
1843 (handle_query): Always support qXfer:feature:read.
1844
1845 2008-03-10 Daniel Jacobowitz <dan@codesourcery.com>
1846
1847 * server.c (wrapper_argv): New.
1848 (start_inferior): Handle wrapper_argv. If set, expect an extra
1849 trap.
1850 (gdbserver_usage): Document --wrapper.
1851 (main): Parse --wrapper.
1852
1853 2008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
1854
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.
1863
1864 2008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
1865
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.
1871
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.
1884
1885 2008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
1886
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.
1890
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.
1904
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.
1918
1919 2008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
1920
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.
1927
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.
1932
1933 * linux-ppc64-low.c (ppc_collect_ptrace_register): New function.
1934 (ppc_supply_ptrace_register): Likewise.
1935 (the_low_target): Update.
1936
1937 * linux-i386-low.c (the_low_target): Update.
1938 * linux-x86-64-low.c (the_low_target): Update.
1939
1940 2008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
1941
1942 * configure.srv [s390x-*-linux*]: Set srv_regobj to include both
1943 reg-s390.o and reg-s390x.o.
1944
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.
1950
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.
1955
1956 * regcache.c (realloc_register_cache): New function.
1957 (set_register_cache): Call it for each existing regcache.
1958
1959 2008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
1960
1961 * server.h (init_registers): Remove prototype.
1962
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.
1999
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.
2007
2008 * spu-low.c (init_registers_spu): Add prototype.
2009 (initialize_low): Call initialie_registers_spu () instead of
2010 initialize_registers ().
2011
2012 2008-02-19 Pedro Alves <pedro@codesourcery.com>
2013
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
2016 error instead.
2017
2018 2008-02-17 Daniel Jacobowitz <dan@codesourcery.com>
2019
2020 * server.c (handle_query): Correct length check.
2021
2022 2008-02-14 Pedro Alves <pedro_alves@portugalmail.pt>
2023
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
2039 has exited.
2040
2041 2008-02-14 Daniel Jacobowitz <dan@codesourcery.com>
2042
2043 * server.c (monitor_show_help): Add "exit".
2044
2045 2008-02-11 Maxim Grigoriev <maxim2405@gmail.com>
2046
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.
2053
2054 2008-02-01 Pedro Alves <pedro_alves@portugalmail.pt>
2055
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
2079 hostio-errno.o.
2080 (arm*-*-mingw32ce*): Set srv_hostio_err_objs to "".
2081 * configure: Regenerate.
2082
2083 2008-01-29 Daniel Jacobowitz <dan@codesourcery.com>
2084
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
2089 is running.
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
2098 "monitor exit".
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.
2110
2111 2007-12-20 Andreas Schwab <schwab@suse.de>
2112
2113 * linux-low.c (STACK_SIZE): Define.
2114 (linux_tracefork_child): Use it. Use __clone2 on ia64.
2115 (linux_test_for_tracefork): Likewise.
2116
2117 2007-12-18 Daniel Jacobowitz <dan@codesourcery.com>
2118
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
2122 int.
2123 (set_breakpoint_at): Update handler type.
2124 (reinsert_breakpoint_handler): Return 1 instead of calling
2125 delete_breakpoint.
2126 (reinsert_breakpoint_by_bp): Check for the original breakpoint before
2127 setting a new one.
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.
2133
2134 2007-12-16 Daniel Jacobowitz <dan@codesourcery.com>
2135
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.
2140
2141 2007-12-07 Daniel Jacobowitz <dan@codesourcery.com>
2142
2143 * server.c (myresume): Add own_buf argument.
2144 (main): Update calls.
2145
2146 2007-12-06 Daniel Jacobowitz <dan@codesourcery.com>
2147
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.
2160
2161 2007-12-06 Mick Davis <mickd@goanna.iinet.net.au>
2162
2163 * remote-utils.c (readchar): Allow binary data in received messages.
2164
2165 2007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
2166
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
2172 attaching.
2173
2174 2007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
2175
2176 * server.c (main): Don't report dll events on the initial
2177 connection on attaches.
2178
2179 2007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
2180
2181 * server.c (main): Relax numerical bases supported for the pid of
2182 the --attach command line argument.
2183
2184 2007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
2185
2186 * win32-low.c (win32_attach): Call OpenProcess before
2187 DebugActiveProcess, not after. Add last error output to error
2188 call.
2189
2190 2007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
2191
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'
2197 field.
2198
2199 2007-12-03 Leo Zayas
2200 Pedro Alves <pedro_alves@portugalmail.pt>
2201
2202 * win32-low.c (soft_interrupt_requested, faked_breakpoint): New
2203 global variables.
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,
2212 and 1 otherwise.
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
2216 resort.
2217
2218 2007-12-03 Leo Zayas
2219 Pedro Alves <pedro_alves@portugalmail.pt>
2220
2221 * win32-low.h (win32_thread_info): Add descriptions to the
2222 structure members. Replace `suspend_count' counter by a
2223 `suspended' flag.
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.
2230
2231 2007-12-02 Pedro Alves <pedro_alves@portugalmail.pt>
2232
2233 * win32-low.c (win32_wait): Don't read from the inferior when it
2234 has already exited.
2235
2236 2007-12-02 Pedro Alves <pedro_alves@portugalmail.pt>
2237
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.
2241
2242 2007-11-30 Daniel Jacobowitz <dan@codesourcery.com>
2243
2244 * hostio.c: Correct copyright year.
2245
2246 2007-11-30 Daniel Jacobowitz <dan@codesourcery.com>
2247
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.
2255
2256 2007-11-05 Daniel Jacobowitz <dan@codesourcery.com>
2257
2258 * linux-low.c: Include <sched.h>.
2259
2260 2007-11-01 Daniel Jacobowitz <dan@codesourcery.com>
2261
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.
2265
2266 2007-10-31 Joel Brobecker <brobecker@adacore.com>
2267
2268 * Makefile.in: Use $(SHELL) instead of "sh" to call regdat.sh.
2269
2270 2007-10-24 Daniel Jacobowitz <dan@codesourcery.com>
2271
2272 * linux-low.c (handle_extended_wait): Handle unexpected signals.
2273
2274 2007-10-23 Daniel Jacobowitz <dan@codesourcery.com>
2275
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
2305 sigstop_sent.
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.
2317
2318 2007-10-15 Daniel Jacobowitz <dan@codesourcery.com>
2319
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*
2325 with SPE.
2326 * linux-ppc-low.c (ppc_regmap): Do not fetch the FP registers for
2327 SPE targets.
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.
2338
2339 2007-09-19 Daniel Jacobowitz <dan@codesourcery.com>
2340
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.
2345
2346 2007-09-04 Daniel Jacobowitz <dan@codesourcery.com>
2347
2348 * linux-low.c (linux_wait_for_event): Do not pass signals while
2349 single-stepping.
2350
2351 2007-09-03 Pedro Alves <pedro_alves@portugalmail.pt>
2352
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.
2358
2359 2007-09-03 Pedro Alves <pedro_alves@portugalmail.pt>
2360
2361 * win32-low.c (handle_load_dll): Don't use toolhelp when waiting.
2362
2363 2007-08-23 Joel Brobecker <brobecker@adacore.com>
2364
2365 * configure.ac: Switch license to GPLv3.
2366
2367 2007-08-01 Michael Snyder <msnyder@access-company.com>
2368
2369 * remote-utils.c (putpkt_binary): Memory leak, free buf2.
2370
2371 2007-07-31 Pedro Alves <pedro_alves@portugalmail.pt>
2372
2373 * win32-low.c (winapi_CloseToolhelp32Snapshot) [_WIN32_WCE]: New
2374 typedef.
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.
2380
2381 2007-07-27 Michael Snyder <michael.snyder@access-company.com>
2382
2383 * server.c (main): Check for inferior exit before main loop.
2384
2385 2007-07-18 Pedro Alves <pedro_alves@portugalmail.pt>
2386
2387 * remote-utils.c (remote_open): Set SO_KEEPALIVE on remote_desc
2388 instead of on tmp_desc.
2389
2390 2007-07-17 Pedro Alves <pedro_alves@portugalmail.pt>
2391 Daniel Jacobowitz <dan@codesourcery.com>
2392
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
2396 list.
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
2401 for qSupported.
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.
2418
2419 2007-07-12 Daniel Jacobowitz <dan@codesourcery.com>
2420
2421 * configure.srv: Set srv_linux_regsets for sh*-*-linux*.
2422 * linux-sh-low.c (sh_fill_gregset, target_regsets): New.
2423
2424 2007-07-08 Pedro Alves <pedro_alves@portugalmail.pt>
2425
2426 * win32-low.c (handle_output_debug_string): Ignore event if not
2427 waiting.
2428
2429 2007-07-08 Pedro Alves <pedro_alves@portugalmail.pt>
2430
2431 * win32-arm-low.c (arm_wince_breakpoint): Fix typo.
2432
2433 2007-07-03 Daniel Jacobowitz <dan@codesourcery.com>
2434
2435 * remote-utils.c (look_up_one_symbol): Handle 'm' packets.
2436
2437 2007-07-02 Daniel Jacobowitz <dan@codesourcery.com>
2438
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
2444 each process.
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.
2455
2456 2007-06-27 Daniel Jacobowitz <dan@codesourcery.com>
2457
2458 * thread-db.c (thread_db_find_new_threads): Add prototype.
2459 (thread_db_create_event): Check for the main thread before adding
2460 a new thread.
2461 (maybe_attach_thread): Only enable event reporting if TID == 0.
2462 (thread_db_get_tls_address): Check for new threads.
2463
2464 2007-06-20 Daniel Jacobowitz <dan@codesourcery.com>
2465
2466 * linux-low.c (linux_create_inferior): Try execv before execvp.
2467 * spu-low.c (spu_create_inferior): Likewise.
2468
2469 2007-06-13 Mike Frysinger <vapier@gentoo.org>
2470
2471 * linux-low.c (linux_create_inferior): Change execv to execvp.
2472 * spu-low.c (spu_create_inferior): Likewies.
2473
2474 2007-06-13 Daniel Jacobowitz <dan@codesourcery.com>
2475
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
2479 rules.
2480 * configure.srv: Specify XML files and new regformats for MIPS and
2481 MIPS64 GNU/Linux.
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.
2490
2491 2007-06-12 Ulrich Weigand <uweigand@de.ibm.com>
2492 Markus Deuling <deuling@de.ibm.com>
2493
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.
2501
2502 2007-06-12 Ulrich Weigand <uweigand@de.ibm.com>
2503
2504 * spu-low.c (spu_proc_xfer_spu): Do not return failure when
2505 accessing non-seekable spufs files.
2506
2507 2007-05-16 Markus Deuling <deuling@de.ibm.com>
2508
2509 * server.c (handle_query): Add reply for qC packet.
2510
2511 2007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
2512 Leo Zayas <lerele@champenstudios@com>
2513
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
2523 to 250 ms.
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.
2528
2529 2007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
2530
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.
2538 (regptr): Delete.
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
2555 events.
2556
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
2561 state variables.
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.
2573
2574 * win32-arm-low.c (CONTEXT_FLOATING_POINT): Define.
2575 (arm_get_thread_context): New.
2576 (arm_set_thread_context): New.
2577 (regptr): 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.
2584
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.
2590
2591 2007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
2592
2593 * linux-low.c (linux_detach): Change return type to int. Return 0.
2594 * spu-low.c (spu_detach): Likewise.
2595
2596 2007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
2597
2598 * target.h (target_ops): Change return type of detach to int.
2599 Add join.
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.
2611 (win32_join): New.
2612 (win32_target_op): Add win32_join.
2613
2614 2007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
2615
2616 * win32-low.c (win32-attach): Fix return value.
2617 * target.h (target_ops): Describe ATTACH return values.
2618
2619 2007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
2620
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.
2627
2628 2007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
2629
2630 * win32-low.c (win32_wait): Don't use WSTOPSIG.
2631
2632 2007-03-30 Pedro Alves <pedro_alves@portugalmail.pt>
2633
2634 * win32-low.c: Commit leftover changes from 2007-03-29.
2635
2636 2007-03-30 Daniel Jacobowitz <dan@codesourcery.com>
2637
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.
2643
2644 2007-03-30 Daniel Jacobowitz <dan@codesourcery.com>
2645
2646 * i387-fp.c (i387_cache_to_fxsave): Reinitialize val2 before use.
2647 (i387_fxsave_to_cache): Check fp->ftag while building ftag value.
2648
2649 2007-03-29 Pedro Alves <pedro_alves@portugalmail.pt>
2650
2651 * configure.srv (arm*-*-mingw32ce*): Move near the other
2652 arm targets.
2653
2654 2007-03-29 Pedro Alves <pedro_alves@portugalmail.pt>
2655
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.
2684 * win32-low.h: 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.
2689 (_T): New macro.
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.
2698 (regptr): New.
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
2712 thread handles.
2713 (win32_detach): Use coredll.dll on Windows CE.
2714 (win32_resume): Let low target handle debug registers, and
2715 step request.
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.
2735
2736 2007-03-28 Pedro Alves <pedro_alves@portugalmail.pt>
2737
2738 * win32-low.c: Rename typedef thread_info to
2739 win32_thread_info throughout.
2740
2741 2007-03-28 Pedro Alves <pedro_alves@portugalmail.pt>
2742
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.
2747
2748 2007-03-27 Pedro Alves <pedro_alves@portugalmail.pt>
2749
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.
2756
2757 2007-03-27 Mat Hostetter <mat@lcs.mit.edu>
2758
2759 * server.c (main): Correct strtoul check.
2760
2761 2007-03-27 Jon Ringle <jon@ringle.org>
2762
2763 * linux-low.c: Check __ARCH_HAS_MMU__ also.
2764
2765 2007-03-27 Brooks Moses <brooks.moses@codesourcery.com>
2766
2767 * Makefile.in: Add dummy "pdf" and "install-pdf" targets.
2768
2769 2007-02-27 Daniel Jacobowitz <dan@codesourcery.com>
2770
2771 * terminal.h: Check HAVE_SGTTY_H.
2772
2773 2007-02-27 Mat Hostetter <mat@lcs.mit.edu>
2774
2775 * remote-utils.c (remote_open): Print out the assigned port number.
2776
2777 2007-02-26 Daniel Jacobowitz <dan@codesourcery.com>
2778
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
2786 of debug_threads.
2787
2788 2007-02-25 Pedro Alves <pedro_alves@portugalmail.pt>
2789
2790 * Makefile.in (EXEEXT): New.
2791 (clean): Use $(EXEEXT).
2792
2793 2007-02-25 Pedro Alves <pedro_alves@portugalmail.pt>
2794
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
2802 of send_signal.
2803 (input_interrupt): Likewise.
2804
2805 2007-02-25 Pedro Alves <pedro_alves@portugalmail.pt>
2806
2807 * server.c (get_features_xml): Check if target implemented
2808 arch_string.
2809 * win32-i386-low.c (win32_arch_string): New.
2810 (win32_target_ops): Add win32_arch_string as arch_string member.
2811
2812 2007-02-22 Markus Deuling <deuling@de.ibm.com>
2813
2814 * spu-low.c (spu_arch_string): New.
2815 (spu_target_ops): Add spu_arch_string.
2816
2817 2007-02-16 Daniel Jacobowitz <dan@codesourcery.com>
2818
2819 * remote-utils.c: Remove HAVE_TERMINAL_H check.
2820 * configure.ac: Do not check for terminal.h.
2821 * configure, config.in: Regenerated.
2822
2823 2007-02-08 Daniel Jacobowitz <dan@codesourcery.com>
2824
2825 * Makefile.in (OBS): Add $(XML_BUILTIN).
2826 (XML_DIR, XML_TARGET, XML_FILES, XML_BUILTIN): New.
2827 (clean): Update.
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
2839 XML documents.
2840 (handle_query): Handle multiple annexes.
2841
2842 2007-01-29 Daniel Jacobowitz <dan@codesourcery.com>
2843
2844 * remote-utils.c [USE_WIN32API] (read, write): Define.
2845 (putpkt_binary, input_interrupt, readchar, getpkt): Use read and
2846 write.
2847
2848 2007-01-09 Daniel Jacobowitz <dan@codesourcery.com>
2849
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.
2859
2860 2007-01-03 Denis Pilat <denis.pilat@st.com>
2861 Daniel Jacobowitz <dan@codesourcery.com>
2862
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.
2866
2867 2006-12-30 Denis PILAT <denis.pilat@st.com>
2868 Daniel Jacobowitz <dan@codesourcery.com>
2869
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.
2874
2875 2006-12-05 Markus Deuling <deuling@de.ibm.com>
2876
2877 * README: Update supported targets.
2878
2879 2006-11-28 Daniel Jacobowitz <dan@codesourcery.com>
2880
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.
2892
2893 2006-11-22 Ulrich Weigand <uweigand@de.ibm.com>
2894
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.
2899
2900 2006-11-16 Daniel Jacobowitz <dan@codesourcery.com>
2901
2902 * configure.ac: Correct td_thr_tls_get_addr test.
2903 * configure: Regenerated.
2904
2905 2006-11-16 Daniel Jacobowitz <dan@codesourcery.com>
2906
2907 * linux-low.c (linux_wait_for_event): Reformat. Use the
2908 pass_signals array.
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.
2914
2915 2006-11-06 Daniel Jacobowitz <dan@codesourcery.com>
2916
2917 * server.c (handle_query): Correct error handling for read_auxv.
2918
2919 2005-10-19 Ulrich Weigand <uweigand@de.ibm.com>
2920
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.
2925
2926 2006-10-17 Daniel Jacobowitz <dan@codesourcery.com>
2927
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.
2942
2943 2006-09-28 Daniel Jacobowitz <dan@codesourcery.com>
2944
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.
2953
2954 2006-09-21 Daniel Jacobowitz <dan@codesourcery.com>
2955
2956 * remote-utils.c (try_rle): New function.
2957 (putpkt_binary): Use it.
2958
2959 2006-08-19 Daniel Jacobowitz <dan@codesourcery.com>
2960
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
2966 point registers.
2967
2968 2006-08-08 Richard Sandiford <richard@codesourcery.com>
2969
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().
2976
2977 2006-07-26 Daniel Jacobowitz <dan@codesourcery.com>
2978
2979 * server.c (handle_query): Correct qPart to qXfer.
2980
2981 2006-07-22 Daniel Jacobowitz <dan@codesourcery.com>
2982
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
2998 numbers.
2999 (main): Skip 'D' packet on mingw32. Use protocol signal numbers
3000 and names.
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.
3012
3013 2006-07-12 Daniel Jacobowitz <dan@codesourcery.com>
3014
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.
3020
3021 2006-06-22 Daniel Jacobowitz <dan@codesourcery.com>
3022
3023 * remote-utils.c (remote_escape_output, remote_unescape_input): New.
3024 (putpkt_binary): Renamed from putpkt and adjusted for binary
3025 data.
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.
3032
3033 2006-06-21 Daniel Jacobowitz <dan@codesourcery.com>
3034
3035 * server.c (handle_query): Handle qSupported.
3036
3037 2006-05-30 Daniel Jacobowitz <dan@codesourcery.com>
3038
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.
3043
3044 2006-05-30 Daniel Jacobowitz <dan@codesourcery.com>
3045
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.
3050
3051 2006-05-09 Nathan Sidwell <nathan@codesourcery.com>
3052
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.
3060
3061 2006-03-15 Daniel Jacobowitz <dan@codesourcery.com>
3062
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.
3068
3069 2006-03-15 Daniel Jacobowitz <dan@codesourcery.com>
3070
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.
3080
3081 2006-03-03 Daniel Jacobowitz <dan@codesourcery.com>
3082
3083 * remote-utils.c (prepare_resume_reply): Move declaration
3084 of gdb_id_from_wait to the top of the block.
3085
3086 2006-02-15 Daniel Jacobowitz <dan@codesourcery.com>
3087
3088 * linux-low.c (regsets_store_inferior_registers): Read the regset
3089 from the target before filling it.
3090
3091 2006-02-08 Daniel Jacobowitz <dan@codesourcery.com>
3092
3093 * server.c (attach_inferior): Return SIGTRAP for a successful
3094 attach.
3095
3096 2006-02-01 Daniel Jacobowitz <dan@codesourcery.com>
3097
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.
3107
3108 2005-12-23 Eli Zaretskii <eliz@gnu.org>
3109
3110 * linux-arm-low.c:
3111 * linux-arm-low.c:
3112 * inferiors.c:
3113 * i387-fp.h:
3114 * i387-fp.c:
3115 * gdbreplay.c:
3116 * regcache.c:
3117 * proc-service.c:
3118 * mem-break.h:
3119 * mem-break.c:
3120 * linux-x86-64-low.c:
3121 * linux-sh-low.c:
3122 * linux-s390-low.c:
3123 * linux-ppc64-low.c:
3124 * linux-ppc-low.c:
3125 * linux-mips-low.c:
3126 * linux-m68k-low.c:
3127 * linux-m32r-low.c:
3128 * linux-low.h:
3129 * linux-low.c:
3130 * linux-ia64-low.c:
3131 * linux-i386-low.c:
3132 * linux-crisv32-low.c:
3133 * thread-db.c:
3134 * terminal.h:
3135 * target.h:
3136 * target.c:
3137 * server.h:
3138 * server.c:
3139 * remote-utils.c:
3140 * regcache.h:
3141 * utils.c:
3142 * Makefile.in:
3143 * configure.ac:
3144 * gdbserver.1: Add (C) after Copyright. Update the FSF
3145 address.
3146
3147 2005-11-13 Daniel Jacobowitz <dan@codesourcery.com>
3148
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.
3152
3153 2005-11-02 Daniel Jacobowitz <dan@codesourcery.com>
3154
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.
3159
3160 2005-10-25 Andreas Schwab <schwab@suse.de>
3161
3162 * server.c (main): Allocate mem_buf with PBUFSIZ bytes.
3163
3164 * linux-ia64-low.c (ia64_regmap): Remove NAT registers.
3165 (ia64_num_regs): Reduce to 462.
3166
3167 2005-09-17 Daniel Jacobowitz <dan@codesourcery.com>
3168
3169 * acinclude.m4: Correct quoting.
3170 * aclocal.m4: Regenerated.
3171
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.
3177
3178 2005-07-31 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3179
3180 * server.h (error, fatal, warning): Add ATTR_FORMAT.
3181
3182 2005-07-13 Daniel Jacobowitz <dan@codesourcery.com>
3183
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
3192 GENERAL_REGS.
3193 * linux-ppc-low.c (ppc_fill_gregset, target_regsets): New.
3194 * linux-ppc64-low.c (ppc_fill_gregset, target_regsets): New.
3195
3196 2005-07-13 Daniel Jacobowitz <dan@codesourcery.com>
3197
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
3208 prototypes.
3209
3210 2005-07-13 Daniel Jacobowitz <dan@codesourcery.com>
3211
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.
3216
3217 2005-07-01 Steve Ellcey <sje@cup.hp.com>
3218
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.
3224
3225 2005-06-16 Daniel Jacobowitz <dan@codesourcery.com>
3226
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.
3231
3232 2005-06-13 Mark Kettenis <kettenis@gnu.org>
3233
3234 * configure.ac: Simplify and improve check for socklen_t.
3235 * configure, config.in: Regenerate.
3236
3237 2005-06-12 Daniel Jacobowitz <dan@codesourcery.com>
3238
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.
3244
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
3250 unsigned char.
3251
3252 * i387-fp.c (struct i387_fsave, struct i387_fxsave): Use unsigned
3253 char for buffers.
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):
3259 Likewise.
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,
3267 and read_auxv.
3268 (read_inferior_memory, write_inferior_memory): Update.
3269 * linux-low.h (struct linux_target_ops): Change type of breakpoint
3270 to unsigned char *.
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.
3276
3277 2005-05-28 Daniel Jacobowitz <dan@codesourcery.com>
3278
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.
3283
3284 2005-05-23 Orjan Friberg <orjanf@axis.com>
3285
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
3293 recognized targets.
3294
3295 2005-05-16 Ulrich Weigand <uweigand@de.ibm.com>
3296
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.
3300
3301 2005-05-12 Orjan Friberg <orjanf@axis.com>
3302
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
3311 reply packet.
3312 * server.c (main): Recognize 'Z' and 'z' packets.
3313
3314 2005-05-10 Ulrich Weigand <uweigand@de.ibm.com>
3315
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.
3319
3320 2005-05-04 Daniel Jacobowitz <dan@codesourcery.com>
3321
3322 * proc-service.c (ps_lgetregs): Search all_processes instead of
3323 all_threads.
3324
3325 2005-05-04 Daniel Jacobowitz <dan@codesourcery.com>
3326
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.
3331
3332 2005-04-15 Kei Sakamoto <sakamoto.kei@renesas.com>
3333
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.
3337
3338 2005-03-04 Daniel Jacobowitz <dan@codesourcery.com>
3339
3340 * Makefile.in (stamp-h): Set CONFIG_HEADERS explicitly.
3341
3342 2005-03-03 Daniel Jacobowitz <dan@codesourcery.com>
3343
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
3356 unsigned long.
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
3365 thread_alive.
3366
3367 2005-02-24 Daniel Jacobowitz <dan@codesourcery.com>
3368
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.
3373
3374 2005-01-07 Andrew Cagney <cagney@gnu.org>
3375
3376 * configure.ac: Rename configure.in, require autoconf 2.59.
3377 * configure: Re-generate.
3378
3379 2004-12-08 Daniel Jacobowitz <dan@debian.org>
3380
3381 * acinclude.m4 (SRV_CHECK_THREAD_DB): Add ps_get_thread_area. Reset
3382 LIBS when finished.
3383 * aclocal.m4: Regenerated.
3384 * configure: Regenerated.
3385
3386 2004-11-21 Andreas Schwab <schwab@suse.de>
3387
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.
3393
3394 * configure.srv (m68*-*-linux*): Set srv_linux_regsets and
3395 srv_linux_thread_db to yes.
3396
3397 2004-10-20 Joel Brobecker <brobecker@gnat.com>
3398
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.
3403
3404 2004-10-16 Daniel Jacobowitz <dan@debian.org>
3405
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
3417 implementations.
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.
3425
3426 2004-10-16 Daniel Jacobowitz <dan@debian.org>
3427
3428 * configure.in: Test for -rdynamic.
3429 * configure: Regenerated.
3430 * Makefile (INTERNAL_LDFLAGS): New.
3431 (gdbserver, gdbreplay): Use it.
3432
3433 2004-09-02 Andrew Cagney <cagney@gnu.org>
3434
3435 * Makefile.in (TAGS): Replace TM_FILE with DEPRECATED_TM_FILE.
3436
3437 2004-03-23 Daniel Jacobowitz <drow@mvista.com>
3438
3439 * linux-low.c (linux_wait): Clear all_processes list also.
3440
3441 2004-03-12 Daniel Jacobowitz <drow@mvista.com>
3442
3443 * linux-low.c: Include <errno.h>. Remove extern declaration of
3444 errno.
3445
3446 2004-03-12 Daniel Jacobowitz <drow@mvista.com>
3447
3448 * gdbreplay.c, server.h, utils.c: Update copyright years.
3449
3450 2004-03-04 Nathan J. Williams <nathanw@wasabisystems.com>
3451
3452 * server.c (main): Print child status or termination signal from
3453 variable 'signal', not 'sig'.
3454
3455 2004-03-04 Nathan J. Williams <nathanw@wasabisystems.com>
3456
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.
3462 Update comment.
3463 (read_inferior_memory): Adapt prototype.
3464 * server.c (main): Return an error packet if
3465 read_inferior_memory() returns an error.
3466
3467 2004-03-04 Daniel Jacobowitz <drow@mvista.com>
3468
3469 * Makefile.in (distclean): Remove config.h, stamp-h, and config.log.
3470 Unify with other clean targets.
3471
3472 2004-02-29 Daniel Jacobowitz <drow@mvista.com>
3473
3474 * server.c (handle_v_cont): Call set_desired_inferior.
3475
3476 2004-02-29 Daniel Jacobowitz <drow@mvista.com>
3477
3478 * remote-utils.c (prepare_resume_reply): Always supply "thread:".
3479
3480 2004-02-29 Daniel Jacobowitz <drow@mvista.com>
3481
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.
3486
3487 2004-02-29 Daniel Jacobowitz <drow@mvista.com>
3488
3489 * remote-utils.c (remote_open): Print a status notice after
3490 opening a TCP port.
3491 * server.c (attach_inferior): Print a status notice after
3492 attaching.
3493
3494 2004-02-29 Daniel Jacobowitz <drow@mvista.com>
3495
3496 * linux-arm-low.c (arm_get_pc): Print out stop PC in debug mode.
3497
3498 2004-02-26 Daniel Jacobowitz <drow@mvista.com>
3499
3500 * remote-utils.c (write_enn): Use "E01" instead of "ENN" for the
3501 error packet.
3502 * server.c, target.h: Update copyright years.
3503
3504 2004-02-25 Roland McGrath <roland@redhat.com>
3505
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.
3510
3511 2004-02-17 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
3512
3513 Committed by Jim Blandy <jimb@redhat.com>.
3514
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.
3518
3519 2004-01-31 Daniel Jacobowitz <drow@mvista.com>
3520
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
3528 pointer.
3529
3530 2004-01-30 Daniel Jacobowitz <drow@mvista.com>
3531
3532 * regcache.c (new_register_cache): Clear the allocated register
3533 buffer. Suggested by Atsushi Nemoto <anemo@mba.ocn.ne.jp>.
3534
3535 2003-10-13 Daniel Jacobowitz <drow@mvista.com>
3536
3537 * linux-low.c (linux_resume): Take a struct thread_resume *
3538 argument.
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
3549 thread_resume *.
3550 (myresume): Delete macro.
3551
3552 2003-08-08 H.J. Lu <hongjiu.lu@intel.com>
3553
3554 * Makefile.in (install-only): Create dest dir. Support DESTDIR.
3555 (uninstall): Support DESTDIR.
3556
3557 Mon Jul 21 20:09:34 UTC 2003 Brendan Conoboy <blc@redhat.com>
3558
3559 * configure.srv: Add xscale*linux copy of arm*linux entry.
3560
3561 2003-07-24 Daniel Jacobowitz <drow@mvista.com>
3562
3563 * linux-arm-low.c (arm_reinsert_addr): New function.
3564 (the_low_target): Add arm_reinsert_addr.
3565
3566 2003-07-08 Mark Kettenis <kettenis@gnu.org>
3567
3568 * mem-break.c: Remove whitespace at end of file.
3569
3570 2003-06-28 Daniel Jacobowitz <drow@mvista.com>
3571
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.
3578
3579 2003-06-28 Daniel Jacobowitz <drow@mvista.com>
3580
3581 * linux-sh-low.c (sh_regmap): Fix FP register offsets, reported by
3582 SUGIOKA Toshinobu <sugioka@itonet.co.jp>.
3583
3584 2003-06-20 Daniel Jacobowitz <drow@mvista.com>
3585
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.
3589
3590 2003-06-17 Daniel Jacobowitz <drow@mvista.com>
3591
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.
3598
3599 2003-06-13 Mark Kettenis <kettenis@gnu.org>
3600
3601 From Kelley Cook <kelleycook@wideopenwest.com>:
3602 * configure.srv: Accept i[34567]86 variants.
3603
3604 2003-06-05 Daniel Jacobowitz <drow@mvista.com>
3605
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
3611 of kill.
3612 * target.h (struct target_ops): Add send_signal.
3613
3614 2003-05-29 Jim Blandy <jimb@redhat.com>
3615
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.
3620
3621 2003-03-26 Daniel Jacobowitz <drow@mvista.com>
3622
3623 * linux-low.c (linux_create_inferior): Use __SIGRTMIN.
3624 (linux_wait_for_event, linux_init_signals): Likewise.
3625
3626 2003-03-17 Daniel Jacobowitz <drow@mvista.com>
3627
3628 * configure.in: Check for stdlib.h.
3629 * configure: Regenerated.
3630 * config.in: Regenerated.
3631
3632 2003-01-04 Andreas Schwab <schwab@suse.de>
3633
3634 * linux-m68k-low.c (m68k_num_regs): Define to 29 instead of 31.
3635
3636 2003-01-02 Andrew Cagney <ac131313@redhat.com>
3637
3638 * Makefile.in: Remove obsolete code.
3639
3640 2002-11-20 Daniel Jacobowitz <drow@mvista.com>
3641
3642 * linux-s390-low.c (s390_regmap): Check GPR_SIZE instead of
3643 defined(PT_FPR0_HI).
3644
3645 2002-11-17 Stuart Hughes <seh@zee2.com>
3646
3647 * linux-arm-low.c (arm_num_regs): Increase.
3648 (arm_regmap): Include status register.
3649
3650 2002-11-17 Daniel Jacobowitz <drow@mvista.com>
3651
3652 * linux-low.c (register_addr): Remove incorrect -1 check.
3653
3654 2002-08-29 Daniel Jacobowitz <drow@mvista.com>
3655
3656 * linux-low.c (linux_create_inferior): Call setpgid. Return
3657 the new PID.
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.
3668
3669 2002-08-23 Daniel Jacobowitz <drow@mvista.com>
3670
3671 * ChangeLog: New file, with entries from gdb/ChangeLog after GDB 5.2.
3672
3673 2002-08-20 Jim Blandy <jimb@redhat.com>
3674
3675 * Makefile.in (LDFLAGS): Allow the configure script to establish a
3676 default for this.
3677
3678 2002-08-01 Andrew Cagney <cagney@redhat.com>
3679
3680 * Makefile.in: Make chill references obsolete.
3681
3682 2002-07-24 Kevin Buettner <kevinb@redhat.com>
3683
3684 * configure.in (unistd.h): Add to AC_CHECK_HEADERS list.
3685 * configure: Regenerate.
3686 * config.in: Regenerate.
3687
3688 2002-07-09 David O'Brien <obrien@FreeBSD.org>
3689
3690 * gdbreplay.c (stdlib.h, unistd.h): Conditionaly include.
3691 (perror_with_name, remote_close, remote_open, expect, play): Static.
3692
3693 2002-07-04 Michal Ludvig <mludvig@suse.cz>
3694
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.
3698
3699 2002-06-13 Daniel Jacobowitz <drow@mvista.com>
3700
3701 * regcache.c: Add comment.
3702
3703 2002-06-11 Daniel Jacobowitz <drow@mvista.com>
3704
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.
3772 Fix recursive case.
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
3781 flag.
3782 (get_regcache): Fetch registers lazily. Add fetch argument
3783 and update all callers.
3784 (regcache_invalidate_one, regcache_invalidate): New
3785 functions.
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
3797 stderr.
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
3804 and general_thread.
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
3812 calls to mywait.
3813 * server.h: 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.
3818 * target.h: Update.
3819 (struct target_ops): New signal_pid method.
3820 (mywait): Removed macro, added prototype.
3821
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.
3831
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
3853 identifier.
3854
3855 2002-05-15 Daniel Jacobowitz <drow@mvista.com>
3856
3857 From Martin Pool <mbp@samba.org>:
3858 * server.c (gdbserver_usage): New function.
3859 (main): Call it.
3860
3861 2002-05-14 Daniel Jacobowitz <drow@mvista.com>
3862
3863 * mem-break.c (reinsert_breakpoint_by_bp): Correct typo
3864 stop_at -> stop_pc.
3865
3866 2002-05-04 Andrew Cagney <ac131313@redhat.com>
3867
3868 * Makefile.in: Remove obsolete code.
3869
3870 2002-04-24 Michal Ludvig <mludvig@suse.cz>
3871
3872 * linux-low.c (regsets_fetch_inferior_registers),
3873 (regsets_store_inferior_registers): Removed cast to int from
3874 ptrace() calls.
3875 * regcache.h: Added declaration of struct inferior_info.
3876
3877 2002-04-20 Daniel Jacobowitz <drow@mvista.com>
3878
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
3889 get_regcache.
3890 * regcache.h: Add prototypes.
3891 * server.h: Likewise.
3892
3893 2002-04-20 Daniel Jacobowitz <drow@mvista.com>
3894
3895 * mem-break.c: New file.
3896 * mem-break.h: New file.
3897 * Makefile.in: Add mem-break.o rule; update server.h
3898 dependencies.
3899 * inferiors.c (struct inferior_info): Add target_data
3900 member.
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
3914 handling members.
3915 * server.c (attach_inferior): Remove extra add_inferior
3916 call.
3917 * server.h: Include mem-break.h. Update inferior.c
3918 prototypes.
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
3924 definition.
3925
3926 2002-04-11 Daniel Jacobowitz <drow@mvista.com>
3927
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.
3933
3934 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
3935
3936 * server.h: Include <string.h> if HAVE_STRING_H.
3937 * ChangeLog: Correct paths in last ChangeLog entry.
3938
3939 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
3940
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,
3953 made static.
3954 (arm_cannot_store_register): Renamed from cannot_store_register,
3955 made static.
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,
3961 made static.
3962 (i386_cannot_store_register): Renamed from cannot_store_register,
3963 made static.
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,
3969 made static.
3970 (ia64_cannot_store_register): Renamed from cannot_store_register,
3971 made static.
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,
3977 made static.
3978 (m68k_cannot_store_register): Renamed from cannot_store_register,
3979 made static.
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,
3985 made static.
3986 (mips_cannot_store_register): Renamed from cannot_store_register,
3987 made static.
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,
3993 made static.
3994 (ppc_cannot_store_register): Renamed from cannot_store_register,
3995 made static.
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,
4001 made static.
4002 (s390_cannot_store_register): Renamed from cannot_store_register,
4003 made static.
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,
4009 made static.
4010 (sh_cannot_store_register): Renamed from cannot_store_register,
4011 made static.
4012 (the_low_target): New.
4013 * linux-x86-64-low.c (x86_64_regmap): Renamed from regmap.
4014 (the_low_target): New.
4015
4016 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
4017
4018 * Makefile.in: Add stamp-h target.
4019 * configure.in: Create stamp-h.
4020 * configure: Regenerated.
4021
4022 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
4023
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
4028 dependencies.
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
4037 child dies.
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.
4057
4058 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
4059
4060 * Makefile.in: Add WARN_CFLAGS. Update configury
4061 dependencies.
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.
4079 (fatal): Likewise.
This page took 0.121334 seconds and 5 git commands to generate.