4e95c4f32f5d8ff5c2bc9e66fc92464c3fd7816c
[deliverable/binutils-gdb.git] / gdb / gdbserver / ChangeLog
1 2010-04-30 Pedro Alves <pedro@codesourcery.com>
2
3 * linux-low.c (linux_kill_one_lwp, linux_kill)
4 (linux_detach_one_lwp): Adjust to send_sigstop interface change.
5 (send_sigstop): Take an lwp_info as parameter instead. Queue a
6 SIGSTOP even if the LWP is stopped.
7 (send_sigstop_callback): New.
8 (stop_all_lwps): Use send_sigstop_callback instead.
9 (linux_resume_one_thread): Adjust.
10 (proceed_one_lwp): Still proceed an LWP that the client has
11 requested to stop, if we haven't reported it as stopped yet. Make
12 sure that LWPs the client want stopped, have a pending SIGSTOP.
13
14 2010-04-26 Doug Evans <dje@google.com>
15
16 * server.c (handle_general_set): Make static.
17
18 * remote-utils.c (putpkt_binary_1): Call readchar instead of read.
19 Print received char after testing for error/eof instead of before.
20 (input_interrupt): Tweak comment.
21
22 2010-04-23 Doug Evans <dje@google.com>
23
24 * server.c (start_inferior): Print inferior argv if --debug.
25
26 2010-04-21 Aleksandar Ristovski <aristovski@qnx.com>
27
28 * Makefile.in (nto_low_h nto-low.o nto-x86-low.o): New dependency lists.
29 * nto-x86-low.c: Include server.h
30
31 2010-04-20 Pierre Muller <muller@ics.u-strasbg.fr>
32
33 * win32-i386-low.c: Use __x86_64__ macro instead of __x86_64 to
34 be consistent with other sources of this directory.
35 (init_registers_amd64): Correct name of source file of this function
36 in the comment.
37
38 2010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
39
40 * configure.srv (x86_64-*-mingw*): New configuration for Windows
41 64-bit executables.
42
43 2010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
44
45 * win32-i386-low.c: Add 64-bit support.
46 (CONTEXT_EXTENDED_REGISTERS): Set macro to zero if not exisiting.
47 (init_registers_amd64): Declare.
48 (mappings): Add 64-bit version of array.
49 (init_windows_x86): New function.
50 (the_low_target): Change init_arch field to init_windows_x86.
51
52 2010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
53
54 * win32-low.c: Adapt to support also 64-bit architecture.
55 (child_xfer_memory): Use uintptr_t type for local variable `addr'.
56 (get_image_name): Use SIZE_T type for local variable `done'.
57 (psapi_get_dll_name): Use LPVOID type for parameter `BaseAddress'.
58 (toolhelp_get_dll_name): Idem.
59 (handle_load_dll): Use CORE_ADDR type for local variable `load_addr'.
60 Use uintptr_t typecast to avoid warning.
61 (handle_unload_dll): Use uintptr_t typecast to avoid warning.
62 (handle_exception): Use phex_nz to avoid warning.
63 (win32_wait): Remove unused local variable `process'.
64
65 2010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
66
67 * configure.srv (srv_amd64_regobj): Replace `x86-64-avx.o' by
68 `amd64-avx.o'.
69
70 2010-04-17 Pierre Muller <muller@ics.u-strasbg.fr>
71
72 * configure.ac: Use `ws2_32' library for srv_mingw.
73 * configure: Regenerate.
74 * gdbreplay.c: Include winsock2.h instead of winsock.h.
75 * remote-utils.c: Likewise.
76
77 2010-04-17 H.J. Lu <hongjiu.lu@intel.com>
78
79 * linux-x86-low.c (xmltarget_amd64_linux_no_xml): Define only
80 if __x86_64__ is defined.
81
82 2010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
83
84 * configure: Regenerate.
85
86 2010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
87
88 * server.c (handle_query): Handle 'qGetTIBAddr' query.
89 * target.h (target_ops): New get_tib_address field.
90 * win32-low.h (win32_thread_info): Add thread_local_base field.
91 * win32-low.c (child_add_thread): Add tlb argument.
92 Set thread_local_base field to TLB.
93 (get_child_debug_event): Adapt to child_add_thread change.
94 (win32_get_tib_address): New function.
95 (win32_target_ops): Set get_tib_address field to
96 win32_get_tib_address.
97 * linux-low.c (linux_target_ops): Set get_tib_address field to NULL.
98
99 2010-04-12 Pedro Alves <pedro@codesourcery.com>
100
101 * linux-low.c (linux_mourn): Also remove the process.
102 * server.c (handle_target_event): Don't remove the process here.
103 * nto-low.c (nto_mourn): New.
104 (nto_target_ops): Install it.
105 * spu-low.c (spu_mourn): New.
106 (spu_target_ops): Install it.
107 * win32-low.c (win32_mourn): New.
108 (win32_target_ops): Install it.
109
110 2010-04-12 Pedro Alves <pedro@codesourcery.com>
111
112 * server.h (buffer_xml_printf): Remove redundant `;'.
113
114 2010-04-12 Pedro Alves <pedro@codesourcery.com>
115
116 * regcache.c (set_register_cache): Invalidate regcaches before
117 changing the register cache layout.
118 (regcache_invalidate_one): Allow a NULL regcache.
119 * linux-x86-low.c (x86_linux_update_xmltarget): Invalidate
120 regcaches before changing the register cache layout or the target
121 regsets.
122
123 2010-04-12 H.J. Lu <hongjiu.lu@intel.com>
124
125 * linux-x86-low.c (x86_linux_update_xmltarget): Avoid unused
126 variable warning on Linux/x86-64.
127
128 2010-04-11 Pedro Alves <pedro@codesourcery.com>
129
130 GDBserver disconnected tracing support.
131
132 * linux-low.c (linux_remove_process): Delete.
133 (add_lwp): Don't set last_resume_kind here.
134 (linux_kill): Use `mourn'.
135 (linux_detach): Use `thread_db_detach', and `mourn'.
136 (linux_mourn): New.
137 (linux_attach_lwp_1): Adjust comment.
138 (linux_attach): last_resume_kind moved the thread_info; adjust.
139 (status_pending_p_callback): Adjust.
140 (linux_wait_for_event_1): Adjust.
141 (count_events_callback, select_singlestep_lwp_callback)
142 (select_event_lwp_callback, cancel_breakpoints_callback)
143 (db_wants_lwp_stopped, linux_wait_1, need_step_over_p)
144 (proceed_one_lwp): Adjust.
145 (linux_async): Add debug output.
146 (linux_thread_stopped): New.
147 (linux_pause_all): New.
148 (linux_target_ops): Install linux_mourn, linux_thread_stopped and
149 linux_pause_all.
150 * linux-low.h (struct lwp_info): Delete last_resume_kind field.
151 (thread_db_free): Delete declaration.
152 (thread_db_detach, thread_db_mourn): Declare.
153 * thread-db.c (thread_db_init): Use thread_db_mourn.
154 (thread_db_free): Delete, split in two.
155 (disable_thread_event_reporting): New.
156 (thread_db_detach): New.
157 (thread_db_mourn): New.
158
159 * server.h (struct thread_info) <last_resume_kind>: New field.
160 <attached>: Add comment.
161 <gdb_detached>: New field.
162 (handler_func): Change return type to int.
163 (handle_serial_event, handle_target_event): Ditto.
164 (gdb_connected): Declare.
165 (tracing): Delete.
166 (disconnected_tracing): Declare.
167 (stop_tracing): Declare.
168
169 * server.c (handle_query) <qSupported>: Report support for
170 disconnected tracing.
171 (queue_stop_reply_callback): Account for running threads.
172 (gdb_wants_thread_stopped): New.
173 (gdb_wants_all_threads_stopped): New.
174 (gdb_reattached_process): New.
175 (handle_status): Clear the `gdb_detached' flag of all processes.
176 In all-stop, stop all threads.
177 (main): Be sure to leave tfind mode. Handle disconnected tracing.
178 (process_serial_event): If the remote connection breaks, or if an
179 exit was forced with "monitor exit", force an event loop exit.
180 Handle disconnected tracing on detach.
181 (handle_serial_event): Adjust.
182 (handle_target_event): If GDB isn't connected, forward events back
183 to the inferior, unless the last process exited, in which case,
184 exit gdbserver. Adjust interface.
185
186 * remote-utils.c (remote_open): Don't block in accept. Instead
187 register an event loop source on the listen socket file
188 descriptor. Refactor bits into ...
189 (listen_desc): ... this new global.
190 (gdb_connected): ... this new function.
191 (enable_async_notification): ... this new function.
192 (handle_accept_event): ... this new function.
193 (remote_close): Clear remote_desc.
194
195 * inferiors.c (add_thread): Set the new thread's last_resume_kind.
196
197 * target.h (struct target_ops) <mourn, thread_stopped, pause_all>:
198 New fields.
199 (mourn_inferior): Define.
200 (target_process_qsupported): Avoid the dangling else problem.
201 (thread_stopped): Define.
202 (pause_all): Define.
203 (target_waitstatus_to_string): Declare.
204 * target.c (target_waitstatus_to_string): New.
205
206 * tracepoint.c (tracing): Make extern.
207 (disconnected_tracing): New.
208 (stop_tracing): Make extern. Handle tracing stops due to GDB
209 disconnecting.
210 (cmd_qtdisconnected): New.
211 (cmd_qtstatus): Report disconnected tracing status in trace reply.
212 (handle_tracepoint_general_set): Handle QTDisconnected.
213
214 * event-loop.c (event_handler_func): Change return type to int.
215 (process_event): Bail out if the event handler wants the event
216 loop to stop.
217 (handle_file_event): Ditto.
218 (start_event_loop): Bail out if the event handler wants the event
219 loop to stop.
220
221 * nto-low.c (nto_target_ops): Adjust.
222 * spu-low.c (spu_wait): Don't remove the process here.
223 (spu_target_ops): Adjust.
224 * win32-low.c (win32_wait): Don't remove the process here.
225 (win32_target_ops): Adjust.
226
227 2010-04-11 Pedro Alves <pedro@codesourcery.com>
228
229 * regcache.c (realloc_register_cache): Invalidate inferior's
230 regcache before recreating it.
231
232 2010-04-09 Pedro Alves <pedro@codesourcery.com>
233
234 * tracepoint.c (cmd_qtstatus): Report trace buffer circularity.
235
236 2010-04-09 Stan Shebs <stan@codesourcery.com>
237 Pedro Alves <pedro@codesourcery.com>
238
239 * server.h (LONGEST): New.
240 (struct thread_info) <while_stepping>: New field.
241 (unpack_varlen_hex, xrealloc, pulongest, plongest, phex_nz):
242 Declare.
243 (initialize_tracepoint, handle_tracepoint_general_set)
244 (handle_tracepoint_query, tracepoint_finished_step)
245 (tracepoint_was_hit, release_while_stepping_state_list):
246 (current_traceframe): Declare.
247 * server.c (handle_general_set): Handle tracepoint packets.
248 (read_memory): New.
249 (write_memory): New.
250 (handle_search_memory_1): Use read_memory.
251 (handle_query): Report support for conditional tracepoints, trace
252 state variables, and tracepoint sources. Handle tracepoint
253 queries.
254 (main): Initialize the tracepoints module.
255 (process_serial_event): Handle traceframe reads/writes.
256
257 * linux-low.c (handle_tracepoints): New.
258 (linux_wait_1): Call it.
259 (linux_resume_one_lwp): Handle while-stepping.
260 (linux_supports_tracepoints, linux_read_pc, linux_write_pc): New.
261 (linux_target_ops): Install them.
262 * linux-low.h (struct linux_target_ops) <supports_tracepoints>:
263 New field.
264 * linux-x86-low.c (x86_supports_tracepoints): New.
265 (the_low_target). Install it.
266
267 * mem-break.h (delete_breakpoint): Declare.
268 * mem-break.c (delete_breakpoint): Make external.
269
270 * target.h (struct target_ops): Add `supports_tracepoints',
271 `read_pc', and `write_pc' fields.
272 (target_supports_tracepoints): Define.
273 * utils.c (xrealloc, decimal2str, pulongest, plongest, thirty_two)
274 (phex_nz): New.
275
276 * regcache.h (struct regcache) <registers_owned>: New field.
277 (init_register_cache, regcache_cpy): Declare.
278 (regcache_read_pc, regcache_write_pc): Declare.
279 (register_cache_size): Declare.
280 (supply_regblock): Declare.
281 * regcache.c (init_register_cache): New.
282 (new_register_cache): Use it.
283 (regcache_cpy): New.
284 (register_cache_size): New.
285 (supply_regblock): New.
286 (regcache_read_pc, regcache_write_pc): New.
287
288 * tracepoint.c: New.
289
290 * Makefile.in (OBS): Add tracepoint.o.
291 (tracepoint.o): New rule.
292
293 2010-04-08 H.J. Lu <hongjiu.lu@intel.com>
294
295 * Makefile.in (clean): Also remove i386-mmx.c i386-mmx-linux.c.
296 (i386-mmx.o): New.
297 (i386-mmx.c): Likewise.
298 (i386-mmx-linux.o): Likewise.
299 (i386-mmx-linux.c): Likewise.
300
301 * configure.srv (srv_i386_regobj): Add i386-mmx.o.
302 (srv_i386_linux_regobj): Add i386-mmx-linux.o.
303 (srv_i386_xmlfiles): Add i386/i386-mmx.xml.
304 (srv_i386_linux_xmlfiles): Add i386/i386-mmx-linux.xml.
305
306 * linux-x86-low.c (init_registers_i386_mmx_linux): New.
307 (x86_linux_update_xmltarget): Call init_registers_i386_mmx_linux
308 and return if ptrace PTRACE_GETFPXREGS failed in 32bit.
309
310 2010-04-07 H.J. Lu <hongjiu.lu@intel.com>
311
312 * Makefile.in (clean): Updated.
313 (i386-avx.o): New.
314 (i386-avx.c): Likewise.
315 (i386-avx-linux.o): Likewise.
316 (i386-avx-linux.c): Likewise.
317 (amd64-avx.o): Likewise.
318 (amd64-avx.c): Likewise.
319 (amd64-avx-linux.o): Likewise.
320 (amd64-avx-linux.c): Likewise.
321
322 * configure.srv (srv_i386_regobj): Add i386-avx.o.
323 (srv_i386_linux_regobj): Add i386-avx-linux.o.
324 (srv_amd64_regobj): Add amd64-avx.o.
325 (srv_amd64_linux_regobj): Add amd64-avx-linux.o.
326 (srv_i386_32bit_xmlfiles): Add i386/32bit-avx.xml.
327 (srv_i386_64bit_xmlfiles): Add i386/64bit-avx.xml.
328 (srv_i386_xmlfiles): Add i386/i386-avx.xml.
329 (srv_amd64_xmlfiles): Add i386/amd64-avx.xml.
330 (srv_i386_linux_xmlfiles): Add i386/i386-avx-linux.xml.
331 (srv_amd64_linux_xmlfiles): Add i386/amd64-avx-linux.xml.
332
333 * i387-fp.c: Include "i386-xstate.h".
334 (i387_xsave): New.
335 (i387_cache_to_xsave): Likewise.
336 (i387_xsave_to_cache): Likewise.
337 (x86_xcr0): Likewise.
338
339 * i387-fp.h (i387_cache_to_xsave): Likewise.
340 (i387_xsave_to_cache): Likewise.
341 (x86_xcr0): Likewise.
342
343 * linux-arm-low.c (target_regsets): Initialize nt_type to 0.
344 * linux-crisv32-low.c (target_regsets): Likewise.
345 * linux-m68k-low.c (target_regsets): Likewise.
346 * linux-mips-low.c (target_regsets): Likewise.
347 * linux-ppc-low.c (target_regsets): Likewise.
348 * linux-s390-low.c (target_regsets): Likewise.
349 * linux-sh-low.c (target_regsets): Likewise.
350 * linux-sparc-low.c (target_regsets): Likewise.
351 * linux-xtensa-low.c (target_regsets): Likewise.
352
353 * linux-low.c: Include <sys/uio.h>.
354 (regsets_fetch_inferior_registers): Support nt_type.
355 (regsets_store_inferior_registers): Likewise.
356 (linux_process_qsupported): New.
357 (linux_target_ops): Add linux_process_qsupported.
358
359 * linux-low.h (regset_info): Add nt_type.
360 (linux_target_ops): Add process_qsupported.
361
362 * linux-x86-low.c: Include "i386-xstate.h", "elf/common.h"
363 and <sys/uio.h>.
364 (init_registers_i386_avx_linux): New.
365 (init_registers_amd64_avx_linux): Likewise.
366 (xmltarget_i386_linux_no_xml): Likewise.
367 (xmltarget_amd64_linux_no_xml): Likewise.
368 (PTRACE_GETREGSET): Likewise.
369 (PTRACE_SETREGSET): Likewise.
370 (x86_fill_xstateregset): Likewise.
371 (x86_store_xstateregset): Likewise.
372 (use_xml): Likewise.
373 (x86_linux_update_xmltarget): Likewise.
374 (x86_linux_process_qsupported): Likewise.
375 (target_regsets): Add NT_X86_XSTATE entry and Initialize nt_type.
376 (x86_arch_setup): Don't call init_registers_amd64_linux nor
377 init_registers_i386_linux here. Call
378 x86_linux_update_xmltarget.
379 (the_low_target): Add x86_linux_process_qsupported.
380
381 * server.c (handle_query): Call target_process_qsupported.
382
383 * target.h (target_ops): Add process_qsupported.
384 (target_process_qsupported): New.
385
386 2010-04-03 Pedro Alves <pedro@codesourcery.com>
387
388 * inferiors.c (add_thread): Set last_status kind to
389 TARGET_WAITKIND_IGNORE.
390 * linux-low.c (cancel_breakpoint): Remove unnecessary regcache
391 fetch. Use ptid_of. Avoid unnecessary get_lwp_thread calls.
392 (linux_wait_1): Move `thread' local definition to block that uses
393 it. Don't NULL initialize `event_child'.
394 (linux_resume_one_thread): Avoid unnecessary get_lwp_thread calls.
395 Alway set the thread's last_status to TARGET_WAITKIND_IGNORE.
396 * linux-x86-low.c (x86_breakpoint_at): Read raw memory.
397
398 2010-04-01 Pedro Alves <pedro@codesourcery.com>
399
400 * linux-low.c (get_stop_pc): Don't adjust the PC if stopped with
401 an extended waitstatus, or by a watchpoint.
402 (cancel_breakpoints_callback): Don't cancel a breakpoint if the
403 thread was stepping or has been stopped by a watchpoint.
404
405 2010-04-01 Pedro Alves <pedro@codesourcery.com>
406
407 * mem-break.c (struct raw_breakpoint): New field shlib_disabled.
408 (set_gdb_breakpoint_at): If GDB is inserting a breakpoint on top
409 of another, then delete the previous, and validate all
410 breakpoints.
411 (validate_inserted_breakpoint): New.
412 (delete_disabled_breakpoints): New.
413 (validate_breakpoints): New.
414 (check_mem_read): Validate breakpoints before trusting their
415 shadow. Delete disabled breakpoints.
416 (check_mem_write): Validate breakpoints before trusting they
417 should be inserted. Delete disabled breakpoints.
418 * mem-break.h (validate_breakpoints):
419 * server.c (handle_query): Validate breakpoints when we see a
420 qSymbol query.
421
422 2010-04-01 Pedro Alves <pedro@codesourcery.com>
423
424 * linux-low.c (linux_wait_1): Avoid setting need_step_over is
425 there's a GDB breakpoint at stop_pc. Always report a trap to GDB
426 if we could tell there's a GDB breakpoint at stop_pc.
427 (need_step_over_p): Don't do a step over if we find a GDB
428 breakpoint at the resume PC.
429
430 * mem-break.c (struct raw_breakpoint): New.
431 (enum bkpt_type): New type `gdb_breakpoint'.
432 (struct breakpoint): Delete the `PC', `old_data' and `inserted'
433 fields. New field `raw'.
434 (find_raw_breakpoint_at): New.
435 (set_raw_breakpoint_at): Handle refcounting. Create a raw
436 breakpoint instead.
437 (set_breakpoint_at): Adjust.
438 (delete_raw_breakpoint): New.
439 (release_breakpoint): New.
440 (delete_breakpoint): Rename to...
441 (delete_breakpoint_1): ... this. Add proc parameter. Use
442 release_breakpoint. Return ENOENT.
443 (delete_breakpoint): Reimplement.
444 (find_breakpoint_at): Delete.
445 (find_gdb_breakpoint_at): New.
446 (delete_breakpoint_at): Delete.
447 (set_gdb_breakpoint_at): New.
448 (delete_gdb_breakpoint_at): New.
449 (gdb_breakpoint_here): New.
450 (set_reinsert_breakpoint): Use release_breakpoint.
451 (uninsert_breakpoint): Rename to ...
452 (uninsert_raw_breakpoint): ... this.
453 (uninsert_breakpoints_at): Adjust to handle raw breakpoints.
454 (reinsert_raw_breakpoint): Change parameter type to
455 raw_breakpoint.
456 (reinsert_breakpoints_at): Adjust to handle raw breakpoints
457 instead.
458 (check_breakpoints): Adjust. Use release_breakpoint.
459 (breakpoint_here): Rewrite using find_raw_breakpoint_at.
460 (breakpoint_inserted_here): Ditto.
461 (check_mem_read): Adjust to iterate over raw breakpoints instead.
462 Don't trust the breakpoint's shadow if it is not inserted.
463 (check_mem_write): Adjust to iterate over raw breakpoints instead.
464 (delete_all_breakpoints): Adjust.
465 (free_all_breakpoints): Mark all breakpoints as uninserted, and
466 use delete_breakpoint_1.
467
468 * mem-break.h (breakpoints_supported): Delete declaration.
469 (set_gdb_breakpoint_at): Declare.
470 (gdb_breakpoint_here): Declare.
471 (delete_breakpoint_at): Delete.
472 (delete_gdb_breakpoint_at): Declare.
473
474 * server.h (struct raw_breakpoint): Forward declare.
475 (struct process_info): New field `raw_breakpoints'.
476
477 * linux-x86-low.c (x86_insert_point, x86_remote_point): Handle Z0
478 breakpoints.
479
480 2010-03-24 Pedro Alves <pedro@codesourcery.com>
481
482 * linux-low.c (status_pending_p_callback): Fix comment.
483 (linux_wait_for_event_1): Move most of the internal breakpoint
484 handling from here...
485 (linux_wait_1): ... to here.
486 (count_events_callback): New.
487 (select_singlestep_lwp_callback): New.
488 (select_event_lwp_callback): New.
489 (cancel_breakpoints_callback): New.
490 (select_event_lwp): New.
491 (linux_wait_1): Simplify internal breakpoint handling. Give equal
492 priority to all LWPs that have had events that should be reported
493 to the client. Cancel breakpoints when about to reporting the
494 event to the client, not while stopping lwps. No longer cancel
495 finished single-steps here.
496 (cancel_finished_single_step): Delete.
497 (cancel_finished_single_steps): Delete.
498
499 2010-03-24 Pedro Alves <pedro@codesourcery.com>
500
501 * mem-break.c (enum bkpt_type): New.
502 (struct breakpoint): New field `type'.
503 (set_breakpoint_at): Change return type to struct breakpoint
504 pointer. Set type to `other_breakpoint' by default.
505 (delete_breakpoint): Rewrite, supporting more than one breakpoint
506 in the breakpoint list.
507 (delete_reinsert_breakpoints): Only delete reinsert breakpoints.
508 (reinsert_breakpoint): Rename to ...
509 (reinsert_raw_breakpoint): ... this.
510 (reinsert_breakpoints_at): Adjust.
511 * mem-break.h (struct breakpoint): Declare.
512 (set_breakpoint_at): Change return type to struct breakpoint
513 pointer.
514
515 2010-03-24 Pedro Alves <pedro@codesourcery.com>
516
517 * server.c (handle_query): Assign, not compare.
518
519 2010-03-24 Pedro Alves <pedro@codesourcery.com>
520
521 Teach linux gdbserver to step-over-breakpoints.
522
523 * linux-low.c (can_hardware_single_step): New.
524 (supports_breakpoints): New.
525 (handle_extended_wait): If stopping threads, read the stop pc of
526 the new cloned LWP.
527 (get_pc): New.
528 (get_stop_pc): Add `lwp' parameter. Handle it. Bail out if the
529 low target doesn't support retrieving the PC.
530 (add_lwp): Set last_resume_kind to resume_continue.
531 (linux_attach_lwp_1): Adjust comments. Always set stop_expected.
532 (linux_attach): Don't clear stop_expected. Set the lwp's
533 last_resume_kind to resume_stop.
534 (linux_detach_one_lwp): Don't check for removed breakpoints.
535 (check_removed_breakpoint): Delete.
536 (status_pending_p): Rename to ...
537 (status_pending_p_callback): ... this. Don't check for removed
538 breakpoints. Don't consider threads that are stopped from GDB's
539 perspective.
540 (linux_wait_for_lwp): Always read the stop_pc here.
541 (cancel_breakpoint): New.
542 (step_over_bkpt): New global.
543 (linux_wait_for_event_1): Implement stepping over breakpoints.
544 (gdb_wants_lwp_stopped): New.
545 (gdb_wants_all_stopped): New.
546 (linux_wait_1): Tag threads as gdb-wants-stopped. Cancel finished
547 single-step traps here. Store the thread's last reported target
548 wait status.
549 (send_sigstop): Don't clear stop_expected. Always set it,
550 instead.
551 (mark_lwp_dead): Remove reference to pending_is_breakpoint.
552 (cancel_finished_single_step): New.
553 (cancel_finished_single_steps): New.
554 (wait_for_sigstop): Don't cancel finished single-step traps here.
555 (linux_resume_one_lwp): Don't check for removed breakpoints.
556 Don't set `step' on non-hardware step archs.
557 (linux_set_resume_request): Ignore resume_stop requests if already
558 stopping or stopped. Set the lwp's last_resume_kind.
559 (resume_status_pending_p): Don't check for removed breakpoints.
560 (need_step_over_p): New.
561 (start_step_over): New.
562 (finish_step_over): New.
563 (linux_resume_one_thread): Always queue a sigstop for resume_stop
564 requests. Clear the thread's last reported target waitstatus.
565 Don't use the `suspended' flag. Don't consider pending breakpoints.
566 (linux_resume): Start a step-over if necessary.
567 (proceed_one_lwp): New.
568 (proceed_all_lwps): New.
569 (unstop_all_lwps): New.
570 * linux-low.h (struct lwp_info): Rewrite comment for the
571 `suspended' flag. Add the `stop_pc' field. Delete the
572 `pending_stop_pc' field. Tweak the `stepping' flag's comment.
573 Add `'last_resume_kind' and `need_step_over' fields.
574 * inferiors.c (struct thread_info): Delete, moved elsewhere.
575 * mem-break.c (struct breakpoint): Delete `reinserting' flag.
576 Delete `breakpoint_to_reinsert' field. New flag `inserted'.
577 (set_raw_breakpoint_at): New.
578 (set_breakpoint_at): Rewrite to use it.
579 (reinsert_breakpoint_handler): Delete.
580 (set_reinsert_breakpoint): New.
581 (reinsert_breakpoint_by_bp): Delete.
582 (delete_reinsert_breakpoints): New.
583 (uninsert_breakpoint): Rewrite.
584 (uninsert_breakpoints_at): New.
585 (reinsert_breakpoint): Rewrite.
586 (reinsert_breakpoints_at): New.
587 (check_breakpoints): Rewrite.
588 (breakpoint_here): New.
589 (breakpoint_inserted_here): New.
590 (check_mem_read): Adjust.
591 * mem-break.h (breakpoints_supported, breakpoint_here)
592 (breakpoint_inserted_here, set_reinsert_breakpoint): Declare.
593 (reinsert_breakpoint_by_bp): Delete declaration.
594 (delete_reinsert_breakpoints): Declare.
595 (reinsert_breakpoint): Delete declaration.
596 (reinsert_breakpoints_at): Declare.
597 (uninsert_breakpoint): Delete declaration.
598 (uninsert_breakpoints_at): Declare.
599 (check_breakpoints): Adjust prototype.
600 * server.h: Adjust include order.
601 (struct thread_info): Declare here. Add a `last_status' field.
602
603 2010-03-23 Michael Snyder <msnyder@vmware.com>
604
605 * server.c (crc32): New function.
606 (handle_query): Add handling for 'qCRC:' request.
607
608 2010-03-23 Pedro Alves <pedro@codesourcery.com>
609
610 * linux-x86-low.c (x86_linux_prepare_to_resume): Clear DR6 if the
611 lwp had been stopped by a watchpoint.
612
613 2010-03-16 Pedro Alves <pedro@codesourcery.com>
614
615 * server.h (internal_error): Declare.
616 (gdb_assert, ASSERT_FUNCTION, gdb_assert_fail): Define.
617 * utils.c (internal_error): New function.
618
619 2010-03-15 Andreas Schwab <schwab@redhat.com>
620
621 * configure.srv: Fix typo setting srv_regobj.
622
623 2010-03-15 Pedro Alves <pedro@codesourcery.com>
624
625 * linux-low.c (fetch_register): Avoid passing a non string literal
626 format to `error'.
627 (usr_store_inferior_registers): Ditto.
628
629 2010-03-14 Pedro Alves <pedro@codesourcery.com>
630
631 * linux-low.c (linux_write_memory): Bail out early if peeking
632 memory failed.
633
634 2010-03-14 Pedro Alves <pedro@codesourcery.com>
635
636 * linux-low.h (struct lwp_info): New fields
637 `stopped_by_watchpoint' and `stopped_data_address'.
638 * linux-low.c (linux_wait_for_lwp): Check for watchpoint triggers
639 here, and cache them in the lwp object.
640 (wait_for_sigstop): Check stopped_by_watchpoint lwp field
641 directly.
642 (linux_resume_one_lwp): Clear the lwp's stopped_by_watchpoint
643 field.
644 (linux_stopped_by_watchpoint): Rewrite.
645 (linux_stopped_data_address): Rewrite.
646
647 2010-03-06 Simo Melenius <simo.melenius@iki.fi>
648
649 * linux-low.c (linux_wait_for_lwp): Fetch the regcache after
650 switching the current inferior, not before.
651
652 2010-03-01 H.J. Lu <hongjiu.lu@intel.com>
653
654 * Makefile.in (clean): Replace reg-i386.c, reg-x86-64.c,
655 reg-i386-linux.c and reg-x86-64-linux.c with i386.c, amd64.c,
656 i386-linux.c and amd64-linux.c.
657 (reg-i386.o): Removed.
658 (reg-i386.c): Likewise.
659 (reg-i386-linux.o): Likewise.
660 (reg-i386-linux.c): Likewise.
661 (reg-x86-64.o): Likewise.
662 (reg-x86-64.c): Likewise.
663 (reg-x86-64-linux.o): Likewise.
664 (reg-x86-64-linux.c): Likewise.
665 (i386.o): New.
666 (i386.c): Likewise.
667 (i386-linux.o): Likewise.
668 (i386-linux.c): Likewise.
669 (amd64.o): Likewise.
670 (amd64.c): Likewise.
671 (amd64-linux.o): Likewise.
672 (amd64-linux.c): Likewise.
673
674 * configure.srv (srv_i386_regobj): New.
675 (srv_i386_linux_regobj): Likewise.
676 (srv_amd64_regobj): Likewise.
677 (srv_amd64_linux_regobj): Likewise.
678 (srv_i386_32bit_xmlfiles): Likewise.
679 (srv_i386_64bit_xmlfiles): Likewise.
680 (srv_i386_xmlfiles): Likewise.
681 (srv_amd64_xmlfiles): Likewise.
682 (srv_i386_linux_xmlfiles): Likewise.
683 (srv_amd64_linux_xmlfiles): Likewise.
684 (i[34567]86-*-cygwin*): Set srv_regobj to $srv_i386_regobj. Set
685 srv_xmlfiles to $srv_i386_xmlfiles.
686 (i[34567]86-*-mingw32ce*): Likewise.
687 (i[34567]86-*-mingw*): Likewise.
688 (i[34567]86-*-nto*): Likewise.
689 (i[34567]86-*-linux*): Set srv_regobj to $srv_i386_linux_regobj
690 and $srv_amd64_linux_regobj. Set srv_xmlfiles to
691 $srv_i386_linux_xmlfiles and $srv_amd64_linux_xmlfiles.
692 (x86_64-*-linux*): Likewise.
693
694 * linux-x86-low.c (init_registers_x86_64_linux): Removed.
695 (init_registers_amd64_linux): New.
696 (x86_arch_setup): Replace init_registers_x86_64_linux with
697 init_registers_amd64_linux.
698
699 2010-02-23 Maxim Kuvyrkov <maxim@codesourcery.com>
700
701 * configure.ac: Check for libdl. If it is not available link against
702 static libthread_db.
703 * configure: Regenerate.
704
705 2010-02-22 Pedro Alves <pedro@codesourcery.com>
706
707 PR9605
708
709 * i386-low.c (i386_length_and_rw_bits): Throw a fatal error if
710 handing a read watchpoint.
711 (i386_low_insert_watchpoint): Read watchpoints aren't supported.
712
713 2010-02-12 Doug Evans <dje@google.com>
714
715 * linux-low.c (linux_supports_tracefork_flag): Document.
716 (linux_look_up_symbols): Add comment.
717
718 2010-02-03 H.J. Lu <hongjiu.lu@intel.com>
719
720 * regcache.c (supply_register): Clear regcache if buf is NULL.
721
722 2010-02-02 Nicolas Roche <roche@sourceware.org>
723 Joel Brobecker <brobecker@adacore.com>
724
725 * inferiors.c (find_inferior): Add function documentation.
726 (unloaded_dll): Handle the case where the unloaded dll has not
727 been previously registered in the dll list.
728
729 2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
730
731 * linux-arm-low.c (thumb_breakpoint_len): Delete.
732 (thumb2_breakpoint): New.
733 (arm_breakpoint_at): Check for Thumb-2 breakpoints.
734
735 2010-01-29 Daniel Jacobowitz <dan@codesourcery.com>
736
737 * linux-low.c (get_stop_pc): Check for SIGTRAP.
738 (linux_wait_for_event_1): Handle SIGILL and SIGSEGV as possible
739 breakpoints.
740
741 2010-01-21 Pedro Alves <pedro@codesourcery.com>
742
743 * linux-ppc-low.c (ppc_arch_setup): Adjust to regcache changes.
744
745 2010-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
746
747 * linux-s390-low.c (s390_collect_ptrace_register)
748 (s390_supply_ptrace_register): Adjust it for the new regcache parameter.
749
750 2010-01-21 Doug Evans <dje@google.com>
751
752 * linux-low.c (PTRACE_ARG3_TYPE): Change from long to void*.
753 (PTRACE_ARG4_TYPE): New macro.
754 (handle_extended_wait): Cast ptrace arg4 to PTRACE_ARG4_TYPE.
755 (linux_wait_for_event_1, linux_resume_one_lwp): Ditto.
756 (fetch_register): Cast to uintptr_t before casting to PTRACE_ARG3_TYPE.
757 (usr_store_inferior_registers): Ditto.
758 (linux_read_memory, linux_write_memory): Ditto.
759 (linux_test_for_tracefork): Ditto.
760
761 * linux-arm-low.c: Remove redundant include of gdb_proc_service.h.
762 Only include elf.h if gdb_proc_service.h didn't include linux/elf.h.
763
764 2010-01-21 Pedro Alves <pedro@codesourcery.com>
765
766 * proc-service.c (ps_lgetregs): Don't refetch registers from the
767 target.
768
769 2010-01-21 Pedro Alves <pedro@codesourcery.com>
770
771 * spu-low.c (spu_fetch_registers, spu_store_registers): Change
772 prototype to take a regcache. Adjust.
773
774 2010-01-20 Pedro Alves <pedro@codesourcery.com>
775
776 * regcache.h (struct thread_info): Forward declare.
777 (struct regcache): New.
778 (new_register_cache): Adjust prototype.
779 (get_thread_regcache): Declare.
780 (free_register_cache): Adjust prototype.
781 (registers_to_string, registers_from_string): Ditto.
782 (supply_register, supply_register_by_name, collect_register)
783 (collect_register_as_string, collect_register_by_name): Ditto.
784 * regcache.c (struct inferior_regcache_data): Delete.
785 (get_regcache): Rename to ...
786 (get_thread_regcache): ... this. Adjust. Switch inferior before
787 fetching registers.
788 (regcache_invalidate_one): Adjust.
789 (regcache_invalidate): Fix prototype.
790 (new_register_cache): Return the new register cache.
791 (free_register_cache): Change prototype.
792 (realloc_register_cache): Adjust.
793 (registers_to_string): Change prototype to take a regcache. Adjust.
794 (registers_from_string): Ditto.
795 (register_data): Ditto.
796 (supply_register): Ditto.
797 (supply_register_by_name): Ditto.
798 (collect_register): Ditto.
799 (collect_register_as_string): Ditto.
800 (collect_register_by_name): Ditto.
801 * server.c (process_serial_event): Adjust.
802 * linux-low.h (regset_fill_func, regset_store_func): Change
803 prototype.
804 (get_pc, set_pc, collect_ptrace_register, supply_ptrace_register):
805 Change prototype.
806 * linux-low.c (get_stop_pc): Adjust.
807 (check_removed_breakpoint): Adjust.
808 (linux_wait_for_event): Adjust.
809 (linux_resume_one_lwp): Adjust.
810 (fetch_register): Add regcache parameter. Adjust.
811 (usr_store_inferior_registers): Ditto.
812 (regsets_fetch_inferior_registers): Ditto.
813 (regsets_store_inferior_registers): Ditto.
814 (linux_fetch_registers, linux_store_registers): Ditto.
815 * i387-fp.c (i387_cache_to_fsave): Change prototype to take a
816 regcache. Adjust.
817 (i387_fsave_to_cache, i387_cache_to_fxsave, i387_fxsave_to_cache): Ditto.
818 * i387-fp.h (i387_cache_to_fsave, i387_fsave_to_cache): Change
819 prototype to take a regcache.
820 (i387_cache_to_fxsave, i387_fxsave_to_cache): Ditto.
821 * remote-utils.c (convert_ascii_to_int, outreg)
822 (prepare_resume_reply): Change prototype to take a regcache.
823 Adjust.
824 * target.h (struct target_ops) <fetch_registers, store_registers>:
825 Change prototype to take a regcache.
826 (fetch_inferior_registers, store_inferior_registers): Change
827 prototype to take a regcache. Adjust.
828 * proc-service.c (ps_lgetregs): Adjust.
829 * linux-x86-low.c (x86_fill_gregset, x86_store_gregset)
830 (x86_fill_fpregset, x86_store_fpregset, x86_fill_fpxregset)
831 (x86_store_fpxregset, x86_get_pc, x86_set_pc): Change prototype to
832 take a regcache. Adjust.
833 * linux-arm-low.c (arm_fill_gregset, arm_store_gregset)
834 (arm_fill_wmmxregset, arm_store_wmmxregset, arm_fill_vfpregset)
835 (arm_store_vfpregset, arm_get_pc, arm_set_pc):
836 (arm_breakpoint_at): Change prototype to take a regcache. Adjust.
837 * linux-cris-low.c (cris_get_pc, cris_set_pc)
838 (cris_cannot_fetch_register):
839 (cris_breakpoint_at): Change prototype to take a regcache.
840 Adjust.
841 * linux-crisv32-low.c (cris_get_pc, cris_set_pc,
842 cris_reinsert_addr, cris_write_data_breakpoint): Change prototype
843 to take a regcache. Adjust.
844 (cris_breakpoint_at, cris_insert_point, cris_remove_point):
845 Adjust.
846 * linux-m32r-low.c (m32r_get_pc, m32r_set_pc): Change prototype to
847 take a regcache. Adjust.
848 * linux-m68k-low.c (m68k_fill_gregset, m68k_store_gregset)
849 (m68k_fill_fpregset, m68k_store_fpregset, m68k_get_pc,
850 (m68k_set_pc): Change prototype to take a regcache. Adjust.
851 * linux-mips-low.c (mips_get_pc):
852 (mips_set_pc): Change prototype to take a regcache. Adjust.
853 (mips_reinsert_addr): Adjust.
854 (mips_collect_register): Change prototype to take a regcache.
855 Adjust.
856 (mips_supply_register):
857 (mips_collect_register_32bit, mips_supply_register_32bit)
858 (mips_fill_gregset, mips_store_gregset, mips_fill_fpregset)
859 (mips_store_fpregset): Ditto.
860 * linux-ppc-low.c (ppc_supply_ptrace_register, ppc_supply_ptrace_register):
861 Ditto.
862 (parse_spufs_run): Adjust.
863 (ppc_get_pc, ppc_set_pc, ppc_fill_gregset, ppc_fill_vsxregset)
864 (ppc_store_vsxregset, ppc_fill_vrregset, ppc_store_vrregset)
865 (ppc_fill_evrregset, ppc_store_evrregset): Change prototype to
866 take a regcache. Adjust.
867 * linux-s390-low.c (s390_collect_ptrace_register)
868 (s390_supply_ptrace_register, s390_fill_gregset, s390_get_pc)
869 (s390_set_pc): Change prototype to take a regcache. Adjust.
870 (s390_arch_setup): Adjust.
871 * linux-sh-low.c (sh_get_pc, sh_breakpoint_at)
872 (sh_fill_gregset): Change prototype to take a regcache. Adjust.
873 * linux-sparc-low.c (sparc_fill_gregset_to_stack)
874 (sparc_fill_gregset, sparc_store_gregset_from_stack)
875 (sparc_store_gregset, sparc_get_pc): Change prototype to take a
876 regcache. Adjust.
877 (sparc_breakpoint_at): Adjust.
878 * linux-xtensa-low.c (xtensa_fill_gregset):
879 (xtensa_store_gregset):
880 (xtensa_fill_xtregset, xtensa_store_xtregset, xtensa_get_pc)
881 (xtensa_set_pc): Change prototype to take a regcache. Adjust.
882 * nto-low.c (nto_fetch_registers, nto_store_registers): Change
883 prototype to take a regcache. Adjust.
884 * win32-arm-low.c (arm_fetch_inferior_register)
885 (arm_store_inferior_register): Change prototype to take a
886 regcache. Adjust.
887 * win32-i386-low.c (i386_fetch_inferior_register)
888 (i386_store_inferior_register): Change prototype to take a
889 regcache. Adjust.
890 * win32-low.c (child_fetch_inferior_registers)
891 (child_store_inferior_registers): Change prototype to take a
892 regcache. Adjust.
893 (win32_wait): Adjust.
894 (win32_fetch_inferior_registers): Change prototype to take a
895 regcache. Adjust.
896 (win32_store_inferior_registers): Adjust.
897 * win32-low.h (struct win32_target_ops) <fetch_inferior_register,
898 store_inferior_register>: Change prototype to take a regcache.
899
900 2010-01-20 Doug Evans <dje@google.com>
901
902 * linux-low.c (linux_create_inferior): Wrap use of __SIGRTMIN in
903 #ifdef.
904 (linux_wait_for_event1, linux_init_signals): Ditto.
905 (W_STOPCODE): Provide definition if missing.
906
907 2010-01-13 Vladimir Prus <vladimir@codesourcery.com>
908
909 * linux-low.c (linux_core_of_thread): New.
910 (compare_ints, show_process, list_threads): New.
911 (linux_qxfer_osdata): Report threads and cores.
912 (linux_target_op): Register linux_core_of_thread.
913 * remote-utils.c (prepare_resume_reply): Report the core.
914 (buffer_xml_printf): Support %d specifier.
915 * server.c (handle_threads_qxfer_proper, handle_threads_qxfer):
916 New.
917 (handle_query): Handle qXfer:threads. Announce availability
918 thereof.
919 * target.h (struct target_ops): New field core_of_thread.
920
921 2010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
922
923 * Makefile.in (clean): Remove new generated files.
924 (reg-s390.o, reg-s390.c): Remove rules.
925 (reg-s390x.o, reg-s390x.c): Likewise.
926 (s390-linux32.o, s390-linux32.c): Add rules.
927 (s390-linux64.o, s390-linux64.c): Likewise.
928 (s390x-linux64.o, s390x-linux64.c): Likewise.
929 * configure.srv (s390*-*-linux*): Update srv_regobj and srv_xmlfiles.
930 * linux-s390-low.c: Include <elf.h>.
931 (HWCAP_S390_HIGH_GPRS): Define if undefined.
932 (init_registers_s390): Remove prototype.
933 (init_registers_s390x): Likewise.
934 (init_registers_s390_linux32): Add prototype.
935 (init_registers_s390_linux64): Likewise.
936 (init_registers_s390x_linux64): Likewise.
937 (s390_num_regs_3264): New define.
938 (s390_regmap_3264): New global variable.
939 (s390_cannot_fetch_register): Remove obsolete check.
940 (s390_cannot_store_register): Likewise.
941 (s390_collect_ptrace_register): Handle upper/lower register halves.
942 (s390_supply_ptrace_register): Likewise.
943 (s390_fill_gregset): Update to register number changes.
944 (s390_get_hwcap): New routine.
945 (s390_arch_setup): Detect 32-bit process running on 64-bit system.
946 Install appropriate regmap and register set.
947
948 2010-01-01 Joel Brobecker <brobecker@adacore.com>
949
950 * server.c (gdbserver_version): Update copyright year to 2010.
951 * gdbreplay.c (gdbreplay_version): Likewise.
952
953 2009-12-28 Doug Evans <dje@google.com>
954
955 * linux-low.c: Delete inclusion of ansidecl.h, elf/common.h,
956 elf/external.h. Include <elf.h> instead but only if necessary.
957
958 2009-12-28 Pedro Alves <pedro@codesourcery.com>
959
960 * linux-low.c (linux_remove_process): Remove `detaching'
961 parameter. Don't release/detach from thread_db here.
962 (linux_kill): Release/detach from thread_db here, ...
963 (linux_detach): ... and here, before actually detaching.
964 (linux_wait_1): ... and here, when a process exits.
965 * thread-db.c (any_thread_of): New.
966 (thread_db_free): Switch the current inferior to a thread of the
967 passed in process.
968
969 2009-12-21 Doug Evans <dje@google.com>
970
971 * linux-x86-low.c: Delete outdated comment about Elf32_Phdr.
972
973 * linux-low.c (kill_lwp): Use __NR_tkill instead of SYS_tkill.
974 Move definition of tkill_failed to ifdef __NR_tkill to avoid gcc
975 warning ifndef __NR_tkill. Move setting of errno there too.
976 Delete unnecessary resetting of errno after syscall.
977 Minor comment changes to match gdb/linux-nat.c:kill_lwp.
978
979 * configure.ac: Check for dladdr.
980 * config.in: Regenerate.
981 * configure: Regenerate.
982 * thread-db.c (dladdr_to_soname): Only define ifdef HAVE_DLADDR.
983 (try_thread_db_load): Update.
984
985 * linux-low.c (my_waitpid): Delete unnecessary prototype.
986
987 2009-12-18 Doug Evans <dje@google.com>
988
989 * event-loop.c: Include unistd.h if it exists.
990
991 * linux-low.c (my_waitpid): Move definition away from being in
992 between linux_tracefork_child/linux_test_for_tracefork.
993
994 * gdb_proc_service.h (psaddr_t): Fix type.
995 * thread-db.c (thread_db_info.td_thr_tls_get_addr_p): Fix
996 signature to match glibc.
997
998 2009-12-16 Doug Evans <dje@google.com>
999
1000 * linux-low.c (linux_read_memory): Fix argument to read.
1001
1002 2009-11-26 Pedro Alves <pedro@codesourcery.com>
1003
1004 * win32-low.c (get_child_debug_event): On EXIT_THREAD_DEBUG_EVENT
1005 events, don't leave current_inferior pointing at null.
1006
1007 2009-11-26 Pedro Alves <pedro@codesourcery.com>
1008
1009 * win32-low.c (LOG): Delete.
1010 (OUTMSG): Output to stderr.
1011 (OUTMSG2): Conditionalize on `debug_threads' variable, instead of
1012 on compile time LOG macro.
1013 (win32_wait): Fix debug output.
1014
1015 2009-11-26 Pedro Alves <pedro@codesourcery.com>
1016
1017 * win32-low.c (win32_add_one_solib): If the dll name is
1018 "ntdll.dll", prepend the system directory to the dll path.
1019
1020 2009-11-17 Daniel Jacobowitz <dan@codesourcery.com>
1021
1022 * m68k-tdep.c (m68k_gdbarch_init): Reuse previous initialization.
1023
1024 2009-11-17 Nathan Sidwell <nathan@codesourcery.com>
1025 Vladimir Prus <vladimir@codesourcery.com>
1026
1027 * Makefile.in (reg-cf.o, reg-cf.c): New targets.
1028 * configure.ac: Check for __mcoldfire__ and set
1029 gdb_cv_m68k_is_coldfire.
1030 * configure.srv: Use gdb_cv_m68k_is_coldfire to select between
1031 reg-cf.o and reg-m68k.o.
1032 * configure: Regenerated.
1033
1034 2009-11-16 Pedro Alves <pedro@codesourcery.com>
1035
1036 * linux-low.c (linux_remove_process): Add `detaching' parameter.
1037 Pass it to thread_db_free.
1038 (linux_kill, linux_detach, linux_wait_1): Adjust to pass the
1039 proper `detaching' argument to linux_remove_process.
1040 * linux-low.h (thread_db_free): Add `detaching' parameter.
1041 * thread-db.c (thread_db_init): Pass false as `detaching' argument
1042 to thread_db_free.
1043 (thread_db_free): Add `detaching' parameter. Only
1044 call td_ta_clear_event if detaching from process.
1045
1046 2009-11-12 Maxim Kuvyrkov <maxim@codesourcery.com>
1047
1048 * thread-db.c (thread_db_free): Fix typo.
1049
1050 2009-11-11 Paul Pluzhnikov <ppluzhnikov@google.com>
1051
1052 PR gdb/10838
1053 * thread-db.c (thread_db_free): Call td_ta_clear_event.
1054
1055 2009-11-03 Nathan Sidwell <nathan@codesourcery.com>
1056
1057 * configure.ac (i[34567]86-*): Check if we're targetting x86-64
1058 with an i686 compiler.
1059 * configure.srv (i[34567]86-*-linux*): Pull in x86-64 handling if
1060 needed.
1061 * configure: Rebuilt.
1062
1063 2009-10-29 Sandra Loosemore <sandra@codesourcery.com>
1064
1065 PR gdb/10783
1066
1067 * server.c (handle_search_memory_1): Correct read_addr initialization
1068 in loop for searching subsequent chunks.
1069
1070 2009-10-29 Paul Pluzhnikov <ppluzhnikov@google.com>
1071
1072 * configure.ac: New --with-libthread-db option.
1073 * thread-db.c: Allow direct dependence on libthread_db.
1074 (thread_db_free): Adjust.
1075 * config.in: Regenerate.
1076 * configure: Likewise.
1077
1078 2009-10-28 Paul Pluzhnikov <ppluzhnikov@google.com>
1079
1080 PR gdb/10757
1081 * thread-db.c (attach_thread): New function.
1082 (maybe_attach_thread): Return success/failure.
1083 (find_new_threads_callback): Adjust.
1084 (thread_db_find_new_threads): Loop until no new threads.
1085
1086 2009-10-13 Pedro Alves <pedro@codesourcery.com>
1087
1088 * proc-service.c (ps_lgetregs): Formatting.
1089
1090 2009-10-08 Paul Pluzhnikov <ppluzhnikov@google.com>
1091
1092 * acinclude.m4: (SRV_CHECK_THREAD_DB, SRV_CHECK_TLS_GET_ADDR): Remove.
1093 * configure.ac: Adjust.
1094 * linux-low.h (struct process_info_private): Move members to struct
1095 thread_db.
1096 (thread_db_free, thread_db_handle_monitor_command): New prototype.
1097 * linux-low.c (linux_remove_process): Adjust.
1098 (linux_wait_for_event_1, linux_look_up_symbols): Likewise.
1099 * server.c (handle_query): Move code ...
1100 (handle_monitor_command): ... here. New function.
1101 * target.h (struct target_ops): New member.
1102 * thread-db.c (struct thread_db): New.
1103 (libthread_db_search_path): New variable.
1104 (thread_db_create_event, thread_db_enable_reporting)
1105 (find_one_thread, maybe_attach_thread, find_new_threads_callback)
1106 (thread_db_find_new_threads, (thread_db_get_tls_address): Adjust.
1107 (try_thread_db_load_1, dladdr_to_soname): New functions.
1108 (try_thread_db_load, thread_db_load_search): New functions.
1109 (thread_db_init): Search for libthread_db.
1110 (thread_db_free): New function.
1111 (thread_db_handle_monitor_command): Likewise.
1112 * config.in: Regenerate.
1113 * configure: Regenerate.
1114
1115 2009-09-27 Ulrich Weigand <uweigand@de.ibm.com>
1116
1117 * spu-low.c (spu_kill): Wait for inferior to terminate.
1118 Call clear_inferiors.
1119 (spu_detach): Call clear_inferiors.
1120
1121 2009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1122
1123 * aclocal.m4: Regenerate.
1124 * config.in: Likewise.
1125 * configure: Likewise.
1126
1127 2009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
1128
1129 * linux-ppc-low.c (INSTR_SC, NR_spu_run): Define.
1130 (parse_spufs_run): New function.
1131 (ppc_get_pc, ppc_set_pc): Detect and handle SPU PC.
1132 (ppc_breakpoint_at): Handle SPU breakpoints.
1133
1134 2009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
1135
1136 * linux-low.c: Include <sys/stat.h> and <sys/vfs.h>.
1137 (SPUFS_MAGIC): Define.
1138 (spu_enumerate_spu_ids): New function.
1139 (linux_qxfer_spu): New function.
1140 (linux_target_ops): Install linux_qxfer_spu.
1141
1142 2009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
1143
1144 * configure.srv (powerpc*-*-linux*): Add powerpc-cell32l.o
1145 and powerpc-cell64l.o to srv_regobj. Add rs6000/powerpc-cell32l.xml
1146 and rs6000/powerpc-cell64l.xml to srv_xmlfiles.
1147 * Makefile.in (powerpc-cell32l.o, powerpc-cell32l.c): New rules.
1148 (powerpc-cell64l.o, powerpc-cell64l.c): Likewise.
1149 (clean): Handle powerpc-cell32l.c and powerpc-cell64l.c.
1150 * linux-ppc-low.c (PPC_FEATURE_CELL): Define.
1151 (init_registers_powerpc_cell32l): Add prototype.
1152 (init_registers_powerpc_cell64l): Likewise.
1153 (ppc_arch_setup): Detect Cell/B.E. architecture.
1154
1155 2009-07-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1156
1157 * Makefile.in (datarootdir): New variable.
1158
1159 2009-07-28 Daniel Jacobowitz <dan@codesourcery.com>
1160
1161 * linux-low.c (linux_write_memory): Update debugging output.
1162 * Makefile.in (clean): Add new descriptions.
1163 (arm-with-vfpv2.o, arm-with-vfpv2.c, arm-with-vfpv3.o)
1164 (arm-with-vfpv3.c, arm-with-neon.o, arm-with-neon.c): New rules.
1165 * configure.srv: Add new files for arm*-*-linux*.
1166 * linux-arm-low.c: Add new declarations.
1167 (PTRACE_GETVFPREGS, PTRACE_SETVFPREGS): Define if undefined.
1168 (arm_hwcap, HWCAP_VFP, HWCAP_IWMMXT, HWCAP_NEON, HWCAP_VFPv3)
1169 (HWCAP_VFPv3D16): New.
1170 (arm_fill_wmmxregset, arm_store_wmmxregset): Check HWCAP_IWMMXT
1171 instead of __IWMMXT__.
1172 (arm_fill_vfpregset, arm_store_vfpregset, arm_get_hwcap)
1173 (arm_arch_setup): New.
1174 (target_regsets): Remove #ifdef. Add VFP regset.
1175 (the_low_target): Use arm_arch_setup.
1176
1177 2009-07-28 Daniel Jacobowitz <dan@codesourcery.com>
1178
1179 * linux-low.c (linux_kill_one_lwp): Adjust kernel workaround to skip
1180 the main thread again.
1181
1182 2009-07-06 Aleksandar Ristovski <aristovski@qnx.com>
1183
1184 Adding Neutrino gdbserver.
1185 * configure: Regenerated.
1186 * configure.ac: Add case for srv_qnx and set LIBS accordingly.
1187 * configure.srv (i[34567]86-*-nto*): New target.
1188 * nto-low.c, nto-low.h, nto-x86-low.c: New files.
1189 * remote-utils.c [__QNX__]: Include sys/iomgr.h
1190 (nto_comctrl) [__QNX__]: New function.
1191 (enable_async_io, disable_async_io) [__QNX__]: Call nto_comctrl.
1192
1193 2009-07-05 Danny Backx <dannybackx@users.sourceforge.net>
1194
1195 * configure.srv (i[34567]86-*-mingw32ce*): Add i386-low.o to
1196 srv_tgtobj.
1197
1198 2009-07-04 Danny Backx <dannybackx@users.sourceforge.net>
1199 Pedro Alves <pedro@codesourcery.com>
1200
1201 * win32-i386-low.c (i386_get_thread_context): Handle systems that
1202 don't support CONTEXT_EXTENDED_REGISTERS.
1203 (i386_win32_breakpoint, i386_win32_breakpoint_len): New.
1204 (the_low_target): Install them.
1205 * win32-low.c (get_child_debug_event): Handle WaitForDebugEvent
1206 failing with ERROR_PIPE_NOT_CONNECTED.
1207
1208 2009-06-30 Doug Evans <dje@google.com>
1209 Pierre Muller <muller@ics.u-strasbg.fr>
1210
1211 Add h/w watchpoint support to x86-linux, win32-i386.
1212 * Makefile.in (SFILES): Add i386-low.c
1213 (i386_low_h): Define.
1214 (i386-low.o): Add dependencies.
1215 (linux-x86-low.o): Add i386-low.h dependency.
1216 (win32-i386-low.o): Ditto.
1217 * i386-low.c: New file.
1218 * i386-low.h: New file.
1219 * configure.srv (i[34567]86-*-cygwin*): Add i386-low.o to srv_tgtobj.
1220 (i[34567]86-*-linux*, i[34567]86-*-mingw*, x86_64-*-linux*): Ditto.
1221 * linux-low.c (linux_add_process): Initialize arch_private.
1222 (linux_remove_process): Free arch_private.
1223 (add_lwp): Initialize arch_private.
1224 (delete_lwp): Free arch_private.
1225 (linux_resume_one_lwp): Call the_low_target.prepare_to_resume if
1226 provided.
1227 * linux-low.h (process_info_private): New member arch_private.
1228 (lwp_info): New member arch_private.
1229 (linux_target_ops): New members new_process, new_thread,
1230 prepare_to_resume.
1231 (ptid_of): New macro.
1232 * linux-x86-low.c: Include stddef.h, i386-low.h.
1233 (arch_process_info): New struct.
1234 (arch_lwp_info): New struct.
1235 (x86_linux_dr_get, x86_linux_dr_set): New functions.
1236 (i386_dr_low_set_addr, i386_dr_low_set_control): New functions.
1237 (i386_dr_low_get_status): New function.
1238 (x86_insert_point, x86_remove_point): New functions.
1239 (x86_stopped_by_watchpoint): New function.
1240 (x86_stopped_data_address): New function.
1241 (x86_linux_new_process, x86_linux_new_thread): New functions.
1242 (x86_linux_prepare_to_resume): New function.
1243 (the_low_target): Add entries for insert_point, remove_point,
1244 stopped_by_watchpoint, stopped_data_address, new_process, new_thread,
1245 prepare_to_resume.
1246 * server.c (debug_hw_points): New global.
1247 (monitor_show_help): Document set debug-hw-points.
1248 (handle_query): Process "set debug-hw-points".
1249 * server.h (debug_hw_points): Declare.
1250 (paddress): Declare.
1251 * utils.c (NUMCELLS, CELLSIZE): New macros.
1252 (get_sell, xsnprintf, paddress): New functions.
1253 * win32-arm-low.c (the_low_target): Add entries for insert_point,
1254 remove_point, stopped_by_watchpoint, stopped_data_address.
1255 * win32-i386-low.c: Include i386-low.h.
1256 (debug_reg_state): Replaces dr.
1257 (i386_dr_low_set_addr, i386_dr_low_set_control): New functions.
1258 (i386_dr_low_get_status): New function.
1259 (i386_insert_point, i386_remove_point): New functions.
1260 (i386_stopped_by_watchpoint): New function.
1261 (i386_stopped_data_address): New function.
1262 (i386_initial_stuff): Update.
1263 (get_thread_context,set_thread_context,i386_thread_added): Update.
1264 (the_low_target): Add entries for insert_point,
1265 remove_point, stopped_by_watchpoint, stopped_data_address.
1266 * win32-low.c (win32_insert_watchpoint): New function.
1267 (win32_remove_watchpoint): New function.
1268 (win32_stopped_by_watchpoint): New function.
1269 (win32_stopped_data_address): New function.
1270 (win32_target_ops): Add entries for insert_watchpoint,
1271 remove_watchpoint, stopped_by_watchpoint, stopped_data_address.
1272 * win32-low.h (win32_target_ops): New members insert_point,
1273 remove_point, stopped_by_watchpoint, stopped_data_address.
1274
1275 2009-06-25 Pedro Alves <pedro@codesourcery.com>
1276
1277 * server.c (process_serial_event): Re-return unsupported, not
1278 error, if the type isn't recognized. Re-allow supporting only
1279 insert or remove packets. Also call require_running for
1280 breakpoints. Add missing break statement to default case. Tidy.
1281 * target.h (struct target_ops): Rename insert_watchpoint to
1282 insert_point, and remove_watchpoint to remove_point.
1283
1284 * linux-low.h (struct linux_target_ops): Likewise.
1285 * linux-low.c (linux_insert_watchpoint): Rename to ...
1286 (linux_insert_point): ... this. Adjust.
1287 (linux_remove_watchpoint): Rename to ...
1288 (linux_remove_point): ... this. Adjust.
1289 (linux_target_ops): Adjust.
1290 * linux-crisv32-low.c (cris_insert_watchpoint): Rename to ...
1291 (cris_insert_point): ... this.
1292 (cris_remove_watchpoint): Rename to ...
1293 (cris_remove_point): ... this.
1294 (the_low_target): Adjust.
1295
1296 2009-06-24 Pierre Muller <muller@ics.u-strasbg.fr>
1297
1298 * server.c (handle_v_kill): Pass signal_pid to
1299 kill_inferior if multi_process is zero.
1300
1301 2009-06-23 Aleksandar Ristovski <aristovski@qnx.com>
1302
1303 * server.c (process_serial_event): Add support for Z0 and Z1 packet.
1304 * target.h (target_ops): Comment for *_watchpoint to make it clear
1305 the functions can get types '0' and '1'.
1306
1307 2009-06-22 Aleksandar Ristovski <aristovski@qnx.com>
1308
1309 * linux-low.c (usr_fetch_inferior_registers): Remove check for regno 0.
1310 * proc-service.c (ps_lgetregs): Pass -1 to fetch all registers.
1311 * regcache.c (get_regcache): Likewise.
1312 * spu-low.c (spu_fetch_registers): Remove 0 to -1 conversion.
1313 * win32-low.c (child_fetch_inferior_registers): Remove check for
1314 regno 0.
1315
1316 2009-06-19 Aleksandar Ristovski <aristovski@qnx.com>
1317 Pedro Alves <pedro@codesourcery.com>
1318
1319 * target.h (struct target_ops) <supports_multi_process>: New
1320 callback.
1321 (target_supports_multi_process): New.
1322 * server.c (handle_query): Even if GDB reports support, only
1323 enable multi-process if the target also supports it. Report
1324 multi-process support only if the target backend supports it.
1325 * linux-low.c (linux_supports_multi_process): New function.
1326 (linux_target_ops): Install it as target_supports_multi_process
1327 callback.
1328
1329 2009-05-24 Doug Evans <dje@google.com>
1330
1331 Global renaming of find_thread_pid to find_thread_ptid.
1332 * server.h (find_thread_ptid): Renamed from find_thread_pid.
1333 * inferiors.c (find_thread_ptid): Renamed from find_thread_pid.
1334 All callers updated.
1335
1336 * linux-low.c (handle_extended_wait): Use linux_resume_one_lwp
1337 to resume the newly created thread, don't call ptrace (PTRACE_CONT)
1338 directly.
1339
1340 * linux-low.c (get_stop_pc): Print pc if debug_threads.
1341 (check_removed_breakpoint, linux_wait_for_lwp): Ditto.
1342 (linux_resume_one_lwp): Ditto.
1343
1344 2009-05-23 Doug Evans <dje@google.com>
1345
1346 * linux-low.c (linux_resume_one_lwp): Change type of first arg
1347 from struct inferior_list_entry * to struct lwp_info *.
1348 All callers updated.
1349
1350 2009-05-13 Doug Evans <dje@google.com>
1351
1352 * linux-x86-low.c: Don't include assert.h.
1353 (x86_siginfo_fixup): Use fatal, not assert.
1354 (x86_arch_setup): Fix comment.
1355
1356 2009-05-12 Doug Evans <dje@google.com>
1357
1358 Biarch support for i386/amd64 gdbserver.
1359 * Makefile.in (SFILES): Remove linux-i386-low.c, linux-x86-64-low.c.
1360 Add linux-x86-low.c.
1361 (linux-i386-low.o, linux-x86-64-low.o): Delete.
1362 (linux-x86-low.o): Add.
1363 * linux-x86-64-low.c: Delete.
1364 * linux-i386-low.c: Delete.
1365 * linux-x86-low.c: New file.
1366 * configure.srv (i?86-linux srv_tgtobj): Replace linux-i386-low.o with
1367 linux-x86-low.o.
1368 (x86_64-linux srv_tgtobj): Replace linux-x86-64-low.o with
1369 linux-x86-low.o.
1370 (x86_64-linux srv_regobj): Add reg-i386-linux.o.
1371 * linux-low.c: Include ansidecl.h, elf/common.h, elf/external.h.
1372 (linux_child_pid_to_exec_file): New function.
1373 (elf_64_header_p, elf_64_file_p): New functions.
1374 (siginfo_fixup): New function.
1375 (linux_xfer_siginfo): New local inf_siginfo. Call siginfo_fixup to
1376 give target a chance to convert layout.
1377 * linux-low.h (linux_target_ops): New member siginfo_fixup.
1378 (linux_child_pid_to_exec_file, elf_64_file_p): Declare.
1379
1380 2009-05-07 Doug Evans <dje@google.com>
1381
1382 * linux-low.c (regsets_fetch_inferior_registers): Fix memory leak.
1383 (regsets_store_inferior_registers): Ditto.
1384
1385 2009-05-06 Pedro Alves <pedro@codesourcery.com>
1386
1387 PR server/10048
1388
1389 * linux-low.c (must_set_ptrace_flags): Delete.
1390 (linux_create_inferior): Set `lwp->must_set_ptrace_flags' instead
1391 of the global.
1392 (linux_attach_lwp_1): Don't set PTRACE_SETOPTIONS here. Set
1393 `lwp->must_set_ptrace_flags' instead.
1394 (linux_wait_for_event_1): Set ptrace options here.
1395 (linux_wait_1): ... not here.
1396
1397 2009-04-30 Doug Evans <dje@google.com>
1398
1399 * inferiors.c (started_inferior_callback): New function.
1400 (attached_inferior_callback): New function.
1401 (have_started_inferiors_p, have_attached_inferiors_p): New functions.
1402 * server.c (print_started_pid, print_attached_pid): New functions.
1403 (detach_or_kill_for_exit): New function.
1404 (main): Call it instead of for_each_inferior (kill_inferior_callback).
1405 * server.h (have_started_inferiors_p): Declare.
1406 (have_attached_inferiors_p): Declare.
1407
1408 * inferiors.c (remove_process): Fix memory leak, free process.
1409 * linux-low.c (linux_remove_process): New function.
1410 (linux_kill): Call it instead of remove_process.
1411 (linux_detach, linux_wait_1): Ditto.
1412
1413 2009-04-19 Danny Backx <dannybackx@users.sourceforge.net>
1414
1415 * configure.srv: Add x86 Windows CE target.
1416
1417 2009-04-03 Ulrich Weigand <uweigand@de.ibm.com>
1418
1419 * inferiors.c (get_thread_process): Make global.
1420 * server.h (get_thread_process): Add prototype.
1421 * thread-db.c (find_one_thread): Use get_thread_process
1422 instead of current_process.
1423 (thread_db_get_tls_address): Do not crash if called when
1424 thread layer is not yet initialized.
1425
1426 2009-04-03 Ulrich Weigand <uweigand@de.ibm.com>
1427
1428 * remote-utils.c (prepare_resume_reply): Null-terminate packet.
1429 * spu-low.c (current_tid): Rename to ...
1430 (current_ptid): ... this.
1431 (fetch_ppc_register, fetch_ppc_memory, store_ppc_memory,
1432 spu_proc_xfer_spu, spu_resume, spu_request_interrupt): Use
1433 ptid_get_lwp (current_ptid) instead of current_tid.
1434 (spu_kill, spu_detach, spu_join, spu_wait): Use pid argument
1435 instead of current_tid. Use find_process_pid to verify pid
1436 argument is valid. Pass proper argument to remove_process.
1437 (spu_thread_alive): Compare current_ptid instead of current_tid.
1438 (spu_resume): Likewise.
1439
1440 2009-04-02 Pedro Alves <pedro@codesourcery.com>
1441
1442 * linux-low.c (usr_store_inferior_registers): Declare local `pid'
1443 variable.
1444
1445 2009-04-01 Pedro Alves <pedro@codesourcery.com>
1446
1447 Implement the multiprocess extensions, and add linux multiprocess
1448 support.
1449
1450 * server.h (ULONGEST): Declare.
1451 (struct ptid, ptid_t): New.
1452 (minus_one_ptid, null_ptid): Declare.
1453 (ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_lwp)
1454 (ptid_get_tid, ptid_equal, ptid_is_pid): Declare.
1455 (struct inferior_list_entry): Change `id' type from unsigned from
1456 to ptid_t.
1457 (struct sym_cache, struct breakpoint, struct
1458 process_info_private): Forward declare.
1459 (struct process_info): Declare.
1460 (current_process): Declare.
1461 (all_processes): Declare.
1462 (initialize_inferiors): Declare.
1463 (add_thread): Adjust to use ptid_t.
1464 (thread_id_to_gdb_id, thread_to_gdb_id, gdb_id_to_thread_id): Ditto.
1465 (add_process, remove_process, find_thread_pid): Declare.
1466 (find_inferior_id): Adjust to use ptid_t.
1467 (cont_thread, general_thread, step_thread): Change type to ptid_t.
1468 (multi_process): Declare.
1469 (push_event): Adjust to use ptid_t.
1470 (read_ptid, write_ptid): Declare.
1471 (prepare_resume_reply): Adjust to use ptid_t.
1472 (clear_symbol_cache): Declare.
1473 * inferiors.c (all_processes): New.
1474 (null_ptid, minus_one_ptid): New.
1475 (ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_lwp)
1476 (ptid_get_tid, ptid_equal, ptid_is_pid): New.
1477 (add_thread): Change unsigned long to ptid. Remove gdb_id
1478 parameter. Adjust.
1479 (thread_id_to_gdb_id, thread_to_gdb_id): Change unsigned long to ptid.
1480 (gdb_id_to_thread): Rename to ...
1481 (find_thread_pid): ... this. Change unsigned long to ptid.
1482 (gdb_id_to_thread_id, find_inferior_id): Change unsigned long to ptid.
1483 (loaded_dll, pull_pid_from_list): Adjust.
1484 (add_process, remove_process, find_process_pid)
1485 (get_thread_process, current_process, initialize_inferiors): New.
1486 * target.h (struct thread_resume) <thread>: Change type to ptid_t.
1487 (struct target_waitstatus) <related_pid>: Ditto.
1488 (struct target_ops) <kill, detach>: Add `pid' argument. Change
1489 return type to int.
1490 (struct target_ops) <join>: Add `pid' argument.
1491 (struct target_ops) <thread_alive>: Change pid's type to ptid_t.
1492 (struct target_ops) <wait>: Add `ptid' field. Change return type
1493 to ptid.
1494 (kill_inferior, detach_inferior, join_inferior): Add `pid' argument.
1495 (mywait): Add `ptid' argument. Change return type to ptid_t.
1496 (target_pid_to_str): Declare.
1497 * target.c (set_desired_inferior): Adjust to use ptids.
1498 (mywait): Add new `ptid' argument. Adjust.
1499 (target_pid_to_str): New.
1500 * mem-break.h (free_all_breakpoints): Declare.
1501 * mem-break.c (breakpoints): Delelete.
1502 (set_breakpoint_at, delete_breakpoint, find_breakpoint_at)
1503 (check_mem_read, check_mem_write, delete_all_breakpoints): Adjust
1504 to use per-process breakpoint list.
1505 (free_all_breakpoints): New.
1506 * remote-utils.c (struct sym_cache) <name>: Drop `const'.
1507 (symbol_cache, all_symbols_looked_up): Delete.
1508 (hexchars): New.
1509 (ishex, unpack_varlen_hex, write_ptid, hex_or_minus_one,
1510 read_ptid): New.
1511 (prepare_resume_reply): Change ptid argument's type from unsigned
1512 long to ptid_t. Adjust. Implement W;process and X;process.
1513 (free_sym_cache, clear_symbol_cache): New.
1514 (look_up_one_symbol): Adjust to per-process symbol cache. *
1515 * server.c (cont_thread, general_thread, step_thread): Change type
1516 to ptid_t.
1517 (attached): Delete.
1518 (multi_process): New.
1519 (last_ptid): Change type to ptid_t.
1520 (struct vstop_notif) <ptid>: Change type to ptid_t.
1521 (queue_stop_reply, push_event): Change `ptid' argument's type to
1522 ptid_t.
1523 (discard_queued_stop_replies): Add `pid' argument.
1524 (start_inferior): Adjust to use ptids. Adjust to mywait interface
1525 changes. Don't reference the `attached' global.
1526 (attach_inferior): Adjust to mywait interface changes.
1527 (handle_query): Adjust to use ptids. Parse GDB's qSupported
1528 features. Handle and report "multiprocess+". Handle
1529 "qAttached:PID".
1530 (handle_v_cont): Adjust to use ptids. Adjust to mywait interface
1531 changes.
1532 (handle_v_kill): New.
1533 (handle_v_stopped): Adjust to use target_pid_to_str.
1534 (handle_v_requests): Allow multiple attaches and runs when
1535 multiprocess extensions are in effect. Handle "vKill".
1536 (myresume): Adjust to use ptids.
1537 (queue_stop_reply_callback): Add `arg' parameter. Handle it.
1538 (handle_status): Adjust to discard_queued_stop_replies interface
1539 change.
1540 (first_thread_of, kill_inferior_callback)
1541 (detach_or_kill_inferior_callback, join_inferiors_callback): New.
1542 (main): Call initialize_inferiors. Adjust to use ptids, killing
1543 and detaching from all inferiors. Handle multiprocess packet
1544 variants.
1545 * linux-low.h: Include gdb_proc_service.h.
1546 (struct process_info_private): New.
1547 (struct linux_target_ops) <pid_of>: Use ptid_get_pid.
1548 <lwpid_of>: Use ptid_get_lwp.
1549 (get_lwp_thread): Adjust.
1550 (struct lwp_info): Add `dead' member.
1551 (find_lwp_pid): Declare.
1552 * linux-low.c (thread_db_active): Delete.
1553 (new_inferior): Adjust comment.
1554 (inferior_pid): Delete.
1555 (linux_add_process): New.
1556 (handle_extended_wait): Adjust.
1557 (add_lwp): Change unsigned long to ptid.
1558 (linux_create_inferior): Add process to processes table. Adjust
1559 to use ptids. Don't set new_inferior here.
1560 (linux_attach_lwp): Rename to ...
1561 (linux_attach_lwp_1): ... this. Add `initial' argument. Handle
1562 it. Adjust to use ptids.
1563 (linux_attach_lwp): New.
1564 (linux_attach): Add process to processes table. Don't set
1565 new_inferior here.
1566 (struct counter): New.
1567 (second_thread_of_pid_p, last_thread_of_process_p): New.
1568 (linux_kill_one_lwp): Add `args' parameter. Handle it. Adjust to
1569 multiple processes.
1570 (linux_kill): Add `pid' argument. Handle it. Adjust to multiple
1571 processes. Remove process from process table.
1572 (linux_detach_one_lwp): Add `args' parameter. Handle it. Adjust
1573 to multiple processes.
1574 (any_thread_of): New.
1575 (linux_detach): Add `pid' argument, and handle it. Remove process
1576 from processes table.
1577 (linux_join): Add `pid' argument. Handle it.
1578 (linux_thread_alive): Change unsighed long argument to ptid_t.
1579 Consider dead lwps as not being alive.
1580 (status_pending_p): Rename `dummy' argument to `arg'. Filter out
1581 threads we're not interested in.
1582 (same_lwp, find_lwp_pid): New.
1583 (linux_wait_for_lwp): Change `pid' argument's type from int to
1584 ptid_t. Adjust.
1585 (linux_wait_for_event): Rename to ...
1586 (linux_wait_for_event_1): ... this. Change `pid' argument's type
1587 from int to ptid_t. Adjust.
1588 (linux_wait_for_event): New.
1589 (linux_wait_1): Add `ptid' argument. Change return type to
1590 ptid_t. Adjust. Use last_thread_of_process_p. Remove processes
1591 that exit from the process table.
1592 (linux_wait): Add `ptid' argument. Change return type to ptid_t.
1593 Adjust.
1594 (mark_lwp_dead): New.
1595 (wait_for_sigstop): Adjust to use ptids. If a process exits while
1596 stopping all threads, mark its main lwp as dead.
1597 (linux_set_resume_request, linux_resume_one_thread): Adjust to use
1598 ptids.
1599 (fetch_register, usr_store_inferior_registers)
1600 (regsets_fetch_inferior_registers)
1601 (regsets_store_inferior_registers, linux_read_memory)
1602 (linux_write_memory): Inline `inferior_pid'.
1603 (linux_look_up_symbols): Adjust to use per-process
1604 `thread_db_active'.
1605 (linux_request_interrupt): Adjust to use ptids.
1606 (linux_read_auxv): Inline `inferior_pid'.
1607 (initialize_low): Don't reference thread_db_active.
1608 * gdb_proc_service.h (struct ps_prochandle) <pid>: Remove.
1609 * proc-service.c (ps_lgetregs): Use find_lwp_pid.
1610 (ps_getpid): Return the pid of the current inferior.
1611 * thread-db.c (proc_handle, thread_agent): Delete.
1612 (thread_db_create_event, thread_db_enable_reporting): Adjust to
1613 per-process data.
1614 (find_one_thread): Change argument type to ptid_t. Adjust to
1615 per-process data.
1616 (maybe_attach_thread): Adjust to per-process data and ptids.
1617 (thread_db_find_new_threads): Ditto.
1618 (thread_db_init): Ditto.
1619 * spu-low.c (spu_create_inferior, spu_attach): Add process to
1620 processes table. Adjust to use ptids.
1621 (spu_kill, spu_detach): Adjust interface. Remove process from
1622 processes table.
1623 (spu_join, spu_thread_alive): Adjust interface.
1624 (spu_wait): Adjust interface. Remove process from processes
1625 table. Adjust to use ptids.
1626 * win32-low.c (current_inferior_tid): Delete.
1627 (current_inferior_ptid): New.
1628 (debug_event_ptid): New.
1629 (thread_rec): Take a ptid. Adjust.
1630 (child_add_thread): Add `pid' argument. Adjust to use ptids.
1631 (child_delete_thread): Ditto.
1632 (do_initial_child_stuff): Add `attached' argument. Add process to
1633 processes table.
1634 (child_fetch_inferior_registers, child_store_inferior_registers):
1635 Adjust.
1636 (win32_create_inferior): Pass 0 to do_initial_child_stuff.
1637 (win32_attach): Pass 1 to do_initial_child_stuff.
1638 (win32_kill): Adjust interface. Remove process from processes
1639 table.
1640 (win32_detach): Ditto.
1641 (win32_join): Adjust interface.
1642 (win32_thread_alive): Take a ptid.
1643 (win32_resume): Adjust to use ptids.
1644 (get_child_debug_event): Ditto.
1645 (win32_wait): Adjust interface. Remove exiting process from
1646 processes table.
1647
1648 2009-04-01 Pedro Alves <pedro@codesourcery.com>
1649
1650 Non-stop mode support.
1651
1652 * server.h (non_stop): Declare.
1653 (gdb_client_data, handler_func): Declare.
1654 (delete_file_handler, add_file_handler, start_event_loop):
1655 Declare.
1656 (handle_serial_event, handle_target_event, push_event)
1657 (putpkt_notif): Declare.
1658 * target.h (enum resume_kind): New.
1659 (struct thread_resume): Replace `step' field by `kind' field.
1660 (TARGET_WNOHANG): Define.
1661 (struct target_ops) <wait>: Add `options' argument.
1662 <supports_non_stop, async, start_non_stop>: New fields.
1663 (target_supports_non_stop, target_async): New.
1664 (start_non_stop): Declare.
1665 (mywait): Add `options' argument.
1666 * target.c (mywait): Add `options' argument. Print child exit
1667 notifications here.
1668 (start_non_stop): New.
1669 * server.c (non_stop, own_buf, mem_buf): New globals.
1670 (struct vstop_notif): New.
1671 (notif_queue): New global.
1672 (queue_stop_reply, push_event, discard_queued_stop_replies)
1673 (send_next_stop_reply): New.
1674 (start_inferior): Adjust to use resume_kind. Adjust to mywait
1675 interface changes.
1676 (attach_inferior): In non-stop mode, don't wait for the target
1677 here.
1678 (handle_general_set): Handle QNonStop.
1679 (handle_query): When handling qC, return the current general
1680 thread, instead of the first thread of the list.
1681 (handle_query): If the backend supports non-stop mode, include
1682 QNonStop+ in the qSupported query response.
1683 (handle_v_cont): Adjust to use resume_kind. Handle resume_stop
1684 and non-stop mode.
1685 (handle_v_attach, handle_v_run): Handle non-stop mode.
1686 (handle_v_stopped): New.
1687 (handle_v_requests): Report support for vCont;t. Handle vStopped.
1688 (myresume): Adjust to use resume_kind. Handle non-stop.
1689 (queue_stop_reply_callback): New.
1690 (handle_status): Handle non-stop mode.
1691 (main): Clear non_stop flag on reconnection. Use the event-loop.
1692 Refactor serial protocol handling from here ...
1693 (process_serial_event): ... to this new function. When GDB
1694 selects any thread, select one here. In non-stop mode, wait until
1695 GDB acks all pending events before exiting.
1696 (handle_serial_event, handle_target_event): New.
1697 * remote-utils.c (remote_open): Install remote_desc in the event
1698 loop.
1699 (remote_close): Remove remote_desc from the event loop.
1700 (putpkt_binary): Rename to...
1701 (putpkt_binary_1): ... this. Add `is_notic' argument. Handle it.
1702 (putpkt_binary): New as wrapper around putpkt_binary_1.
1703 (putpkt_notif): New.
1704 (prepare_resume_reply): In non-stop mode, don't change the
1705 general_thread.
1706 * event-loop.c: New.
1707 * Makefile.in (OBJ): Add event-loop.o.
1708 (event-loop.o): New rule.
1709
1710 * linux-low.h (pid_of): Moved here.
1711 (lwpid_of): New.
1712 (get_lwp_thread): Use lwpid_of.
1713 (struct lwp_info): Delete `lwpid' field. Add `suspended' field.
1714 * linux-low.c (pid_of): Delete.
1715 (inferior_pid): Use lwpid_of.
1716 (linux_event_pipe): New.
1717 (target_is_async_p): New.
1718 (delete_lwp): New.
1719 (handle_extended_wait): Use lwpid_of.
1720 (add_lwp): Don't set lwpid field.
1721 (linux_attach_lwp): Adjust debug output. Use lwpid_of.
1722 (linux_kill_one_lwp): If killing a running lwp, stop it first.
1723 Use lwpid_of. Adjust to linux_wait_for_event interface changes.
1724 (linux_detach_one_lwp): If detaching from a running lwp, stop it
1725 first. Adjust to linux_wait_for_event interface changes. Use
1726 lwpid_of.
1727 (linux_detach): Don't delete the main lwp here.
1728 (linux_join): Use my_waitpid. Avoid signal_pid. Use lwpid_of.
1729 (status_pending_p): Don't consider explicitly suspended lwps.
1730 (linux_wait_for_lwp): Take an integer pid instead of a lwp_info
1731 pointer. Add OPTIONS argument. Change return type to int. Use
1732 my_waitpid instead of sleeping. Handle WNOHANG. Use lwpid_of.
1733 (linux_wait_for_event): Take an integer pid instead of a lwp_info
1734 pointer. Add status pointer argument. Return a pid instead of a
1735 status. Use lwpid_of. Adjust to linux_wait_for_lwp interface
1736 changes. In non-stop mode, don't switch to a random thread.
1737 (linux_wait): Rename to...
1738 (linux_wait_1): ... this. Add target_options argument, and handle
1739 it. Adjust to use resume_kind. Use lwpid_of. In non-stop mode,
1740 don't handle the continue thread. Handle TARGET_WNOHANG. Merge
1741 clean exit and signal exit code. Don't stop all threads in
1742 non-stop mode. In all-stop mode, only stop all threads when
1743 reporting a stop to GDB. Handle explicit thread stop requests.
1744 (async_file_flush, async_file_mark): New.
1745 (linux_wait): New.
1746 (send_sigstop): Use lwpid_of.
1747 (wait_for_sigstop): Use lwpid_of. Adjust to linux_wait_for_event
1748 interface changes. In non-stop mode, don't switch to a random
1749 thread.
1750 (linux_resume_one_lwp): Use lwpid_of.
1751 (linux_continue_one_thread, linux_queue_one_thread): Merge into ...
1752 (linux_resume_one_thread): ... this. Handle resume_stop. In
1753 non-stop mode, don't look for pending flag in all threads.
1754 (resume_status_pending_p): Don't consider explicitly suspended
1755 threads.
1756 (my_waitpid): Reimplement. Emulate __WALL.
1757 (linux_request_interrupt, linux_read_offsets, linux_xfer_siginfo):
1758 Use lwpid_of.
1759 (sigchld_handler, linux_supports_non_stop, linux_async)
1760 (linux_start_non_stop): New.
1761 (linux_target_ops): Register linux_supports_non_stop, linux_async
1762 and linux_start_non_stop.
1763 (initialize_low): Install SIGCHLD handler.
1764 * thread-db.c (thread_db_create_event, find_one_thread)
1765 (thread_db_get_tls_address): Use lwpid_of.
1766 * win32-low.c (win32_detach): Adjust to use resume_kind.
1767 (win32_wait): Add `options' argument.
1768 * spu-low.c (spu_resume): Adjust to use resume_kind.
1769 (spu_wait): Add `options' argument.
1770
1771 2009-04-01 Pedro Alves <pedro@codesourcery.com>
1772
1773 Decouple target code from remote protocol.
1774
1775 * target.h (enum target_waitkind): New.
1776 (struct target_waitstatus): New.
1777 (struct target_ops) <wait>: Return an unsigned long. Take a
1778 target_waitstatus pointer instead of a char pointer.
1779 (mywait): Likewise.
1780 * target.c (mywait): Change prototype to return an unsigned long.
1781 Take a target_waitstatus pointer instead of a char pointer. Adjust.
1782 * server.h (thread_from_wait, old_thread_from_wait): Delete
1783 declarations.
1784 (prepare_resume_reply): Change prototype to take a
1785 target_waitstatus.
1786 * server.c (thread_from_wait, old_thread_from_wait): Delete.
1787 (last_status, last_ptid): New.
1788 (start_inferior): Remove "statusptr" argument. Adjust. Return a
1789 pid instead of a signal.
1790 (attach_inferior): Remove "status" and "signal" parameters.
1791 Adjust.
1792 (handle_query): For qGetTLSAddr, parse the thread id with strtol,
1793 not as an address.
1794 (handle_v_cont, handle_v_attach, handle_v_run, handle_v_kill)
1795 (handle_v_requests, myresume): Remove "status" and "signal"
1796 parameters. Adjust.
1797 (handle_status): New.
1798 (main): Delete local `status'. Adjust.
1799 * remote-utils.c: Include target.h.
1800 (prepare_resume_reply): Change prototype to take a
1801 target_waitstatus. Adjust.
1802
1803 * linux-low.c (linux_wait): Adjust to new target_ops->wait
1804 interface.
1805 * spu-low.c (spu_wait): Adjust.
1806 * win32-low.c (enum target_waitkind, struct target_waitstatus):
1807 Delete.
1808 (win32_wait): Adjust.
1809
1810 2009-04-01 Pedro Alves <pedro@codesourcery.com>
1811
1812 * target.h (struct thread_resume): Delete leave_stopped member.
1813 (struct target_ops): Add a `n' argument to the `resume' callback.
1814 * server.c (start_inferior): Adjust.
1815 (handle_v_cont, myresume): Adjust.
1816 * linux-low.c (check_removed_breakpoint): Adjust to resume
1817 interface change, and to removed leave_stopped field.
1818 (resume_ptr): Delete.
1819 (struct thread_resume_array): New.
1820 (linux_set_resume_request): Add new `arg' parameter. Adjust to
1821 resume interface change.
1822 (linux_continue_one_thread, linux_queue_one_thread)
1823 (resume_status_pending_p): Check if the resume field is NULL
1824 instead of checking the leave_stopped member.
1825 (linux_resume): Adjust to the target resume interface change.
1826 * spu-low.c (spu_resume): Adjust to the target resume interface
1827 change.
1828 * win32-low.c (win32_detach, win32_resume): Ditto.
1829
1830 2009-04-01 Pedro Alves <pedro@codesourcery.com>
1831
1832 * linux-low.c (linux_wait_for_event): Don't clear the `stepping'
1833 flag.
1834 (wait_for_sigstop): Don't leave a finished single-step SIGTRAP
1835 pending.
1836 (linux_continue_one_thread): Only preserve the stepping flag if
1837 there's a pending breakpoint.
1838
1839 2009-03-31 Pedro Alves <pedro@codesourcery.com>
1840
1841 * server.c (main): After the inferior having exited, call
1842 remote_close before exiting gdbserver.
1843
1844 2009-03-25 Thiago Jung Bauermann <bauerman@br.ibm.com>
1845
1846 Fix size of FPSCR in Power 7 processors.
1847 * linux-ppc-low.c (PPC_FEATURE_ARCH_2_05): Remove #define.
1848 (PPC_FEATURE_HAS_DFP): New #define.
1849 (ppc_arch_setup): Check for DFP feature instead of ISA 2.05 to decide on
1850 size of the FPSCR.
1851
1852 2009-03-23 Pedro Alves <pedro@codesourcery.com>
1853
1854 * server.c (handle_query) Whitespace and formatting.
1855
1856 2009-03-22 Pedro Alves <pedro@codesourcery.com>
1857
1858 * i387-fp.c, linux-arm-low.c, linux-cris-low.c,
1859 linux-crisv32-low.c, linux-i386-low.c, linux-low.c,
1860 linux-mips-low.c, linux-s390-low.c, linux-sparc-low.c,
1861 linux-x86-64-low.c, linux-xtensa-low.c, proc-service.c,
1862 regcache.c, remote-utils.c, server.c, spu-low.c, target.h,
1863 thread-db.c, win32-low.c, xtensa-xtregs.c, gdbreplay.c,
1864 Makefile.in, configure.ac: Fix whitespace throughout.
1865 * configure: Regenerate.
1866
1867 2009-03-22 Pedro Alves <pedro@codesourcery.com>
1868
1869 * inferiors.c (find_inferior): Make it safe for the callback
1870 function to delete the currently iterated inferior.
1871
1872 2009-03-22 Pedro Alves <pedro@codesourcery.com>
1873
1874 * Makefile.in (linuw_low_h): Move higher.
1875 (thread-db.o): Depend on $(linux_low_h).
1876
1877 2009-03-17 Pedro Alves <pedro@codesourcery.com>
1878
1879 Rename "process" to "lwp" throughout.
1880
1881 * linux-low.c (all_processes): Rename to...
1882 (all_lwps): ... this.
1883 (inferior_pid, handle_extended_wait, get_stop_pc): Adjust.
1884 (add_process): Rename to ...
1885 (add_lwp): ... this. Adjust.
1886 (linux_create_inferior): Adjust.
1887 (linux_attach_lwp): Adjust.
1888 (linux_attach): Adjust.
1889 (linux_kill_one_process): Rename to ...
1890 (linux_kill_one_lwp): ... this. Adjust.
1891 (linux_kill): Adjust.
1892 (linux_detach_one_process): Rename to ...
1893 (linux_detach_one_lwp): ... this. Adjust.
1894 (linux_detach): Adjust.
1895 (check_removed_breakpoint): Adjust.
1896 (status_pending_p): Adjust.
1897 (linux_wait_for_process): Rename to ...
1898 (linux_wait_for_lwp): ... this. Adjust.
1899 (linux_wait_for_event): Adjust.
1900 (send_sigstop): Adjust.
1901 (wait_for_sigstop): Adjust.
1902 (stop_all_processes): Rename to ...
1903 (stop_all_lwps): ... this.
1904 (linux_resume_one_process): Rename to ...
1905 (linux_resume_one_lwp): ... this. Adjust.
1906 (linux_set_resume_request, linux_continue_one_thread)
1907 (linux_queue_one_thread, resume_status_pending_p)
1908 (usr_store_inferior_registers, regsets_store_inferior_registers)
1909 (linux_request_interrupt, linux_read_offsets, linux_xfer_siginfo):
1910 Adjust.
1911 * linux-low.h (get_process): Rename to ...
1912 (get_lwp): ... this. Adjust.
1913 (get_thread_process): Rename to ...
1914 (get_thread_lwp): ... this. Adjust.
1915 (get_process_thread): Rename to ...
1916 (get_lwp_thread): ... this. Adjust.
1917 (struct process_info): Rename to ...
1918 (struct lwp_info): ... this.
1919 (all_processes): Rename to ...
1920 (all_lwps): ... this.
1921 * proc-service.c (ps_lgetregs): Adjust.
1922 * thread-db.c (thread_db_create_event, find_one_thread)
1923 (maybe_attach_thread, thread_db_get_tls_address): Adjust.
1924
1925 2009-03-14 Pedro Alves <pedro@codesourcery.com>
1926
1927 * server.c (handle_query): Handle "qAttached".
1928
1929 2009-03-13 Nathan Sidwell <nathan@codesourcery.com>
1930
1931 * Makefile.in, hostio-errno.c, errno.c, xtensa-xtregs.c: Change to
1932 GPLv3, update license URL.
1933
1934 2009-03-01 Doug Evans <dje@google.com>
1935
1936 * Makefile.in (INCLUDE_CFLAGS): Add -I$(srcdir)/../common.
1937 (server_h): Add gdb_signals.h.
1938 (signals.o): Update.
1939 * server.h (target_signal_from_host,target_signal_to_host_p)
1940 (target_signal_to_host,target_signal_to_name): Moved to gdb_signals.h.
1941
1942 2009-02-14 Pierre Muller <muller@ics.u-strasbg.fr>
1943
1944 * remote-utils.c (getpkt): Also generate remote-debug
1945 information if noack_mode is set.
1946
1947 2009-02-06 Pedro Alves <pedro@codesourcery.com>
1948
1949 * server.c (handle_query): Report qXfer:siginfo:read and
1950 qXfer:siginfo:write as supported and handle them.
1951 * target.h (struct target_ops) <qxfer_siginfo>: New field.
1952 * linux-low.c (linux_xfer_siginfo): New.
1953 (linux_target_ops): Set it.
1954
1955 2009-01-26 Pedro Alves <pedro@codesourcery.com>
1956
1957 * server.c (gdbserver_usage): Mention --remote-debug.
1958 (main): Accept '--remote-debug' switch.
1959
1960 2009-01-18 Doug Evans <dje@google.com>
1961
1962 * regcache.c (new_register_cache): No need to check result of xcalloc.
1963 * server.c (handle_search_memory): Back out calls to xmalloc,
1964 result is checked and error is returned to user upon failure.
1965 (handle_query): Ditto. Add more checks for result of malloc.
1966 (handle_v_cont): Check result of malloc, report error back to
1967 user upon failure.
1968 (handle_v_run): Ditto. Call freeargv.
1969 * server.h (freeargv): Declare.
1970 * utils.c (freeargv): New fn.
1971
1972 2009-01-15 Doug Evans <dje@google.com>
1973
1974 * gdbreplay.c (perror_with_name): Make arg const char *.
1975 * server.h (target_signal_to_name): Make return type const char *.
1976 * thread-db.c (thread_db_err_str): Make return type const char *.
1977 * utils.c (perror_with_name): Make arg const char *.
1978
1979 2009-01-14 Pedro Alves <pedro@codesourcery.com>
1980
1981 * win32-low.c (get_child_debug_event): Issue a final DBG_CONTINUE
1982 when handling a EXIT_PROCESS_DEBUG_EVENT.
1983
1984 2009-01-06 Joel Brobecker <brobecker@adacore.com>
1985
1986 * gdbreplay.c (gdbreplay_version): Update copyright year.
1987 * server.c (gdbserver_version): Likewise.
1988
1989 2009-01-05 Doug Evans <dje@google.com>
1990
1991 * linux-low.c (linux_attach_lwp): Add some comments/fixmes.
1992 (handle_extended_wait): Improve comment.
1993
1994 2008-12-13 Doug Evans <dje@google.com>
1995
1996 * utils.c (xmalloc,xcalloc,xstrdup): New fns.
1997 * server.h (ATTR_MALLOC): New macro.
1998 (xmalloc,xcalloc,xstrdup): Declare.
1999 * hostio.c: Replace malloc,calloc,strdup with xmalloc,xcalloc,xstrdup.
2000 * inferiors.c: Ditto.
2001 * linux-low.c: Ditto.
2002 * mem-break.c: Ditto.
2003 * regcache.c: Ditto.
2004 * remote-utils.c: Ditto.
2005 * server.c: Ditto.
2006 * target.c: Ditto.
2007 * win32-low.c: Ditto.
2008
2009 2008-12-12 Doug Evans <dje@google.com>
2010
2011 * linux-low.c (linux_wait_for_process): Don't clobber current_inferior
2012 in debugging printf.
2013
2014 * linux-low.c (handle_extended_wait): Simplify, use my_waitpid.
2015
2016 2008-12-09 Doug Evans <dje@google.com>
2017
2018 * linux-low.h (struct process_info): Delete member tid, unused.
2019 * thread-db.c (find_one_thread): Update.
2020 (maybe_attach_thread): Update.
2021
2022 2008-12-02 Pedro Alves <pedro@codesourcery.com>
2023
2024 * target.h (struct target_ops): Add qxfer_osdata member.
2025 * linux-low.c: Include ctype.h and pwd.h and sys/types.h
2026 and dirent.h.
2027 (linux_qxfer_osdata): New functions.
2028 (linux_target_ops): Register linux_qxfer_osdata as qxfer_osdata
2029 callback.
2030 * server.c (handle_query): Handle "qXfer:osdata:read:".
2031 * remote-utils.c (buffer_grow, buffer_free, buffer_init, buffer_finish)
2032 (buffer_xml_printf): New functions.
2033 * server.h (struct buffer): New.
2034 (buffer_grow_str, buffer_grow_str0): New macros.
2035 (buffer_grow, buffer_free, buffer_init, buffer_finish)
2036 (buffer_xml_printf): Declare.
2037
2038 2008-11-24 Doug Evans <dje@google.com>
2039
2040 * Makefile.in (VERSION,DIST,LINT,LINTFLAGS): Delete, unused.
2041
2042 2008-11-24 Daniel Jacobowitz <dan@codesourcery.com>
2043
2044 * server.c (handle_v_run): Always use the supplied argument list.
2045
2046 2008-11-19 Bob Wilson <bob.wilson@acm.org>
2047
2048 * xtensa-xtregs.c (XTENSA_ELF_XTREG_SIZE): Change to 4.
2049 (xtensa_regmap_table): Add entry for scompare1.
2050
2051 2008-11-18 Thiago Jung Bauermann <bauerman@br.ibm.com>
2052
2053 * Makefile.in (powerpc-isa205-32l.o, powerpc-isa205-32l.c,
2054 powerpc-isa205-altivec32l.o, powerpc-isa205-altivec32l.c,
2055 powerpc-isa205-vsx32l.o, powerpc-isa205-vsx32l.c,
2056 powerpc-isa205-64l.o, powerpc-isa205-64l.c,
2057 powerpc-isa205-altivec64l.o, powerpc-isa205-altivec64l.c,
2058 powerpc-isa205-vsx64l.o, powerpc-isa205-vsx64l.c): New targets.
2059 * configure.srv (powerpc*-*-linux*): Add ISA 2.05 object files and
2060 XML target descriptions.
2061 * linux-ppc-low.c (ppc_arch_setup): Init registers with 64-bit FPSCR
2062 when inferior is running on an ISA 2.05 or later processor. Add
2063 special case to return offset for full 64-bit slot of FPSCR when
2064 in 32-bits.
2065
2066 2008-11-14 Daniel Gutson <dgutson@codesourcery.com>
2067
2068 * Makefile.in (SFILES, clean): Added sparc64 files.
2069 (reg-sparc64.o, reg-sparc64.c): New.
2070 * configure.srv (sparc*-*-linux*): New configuration.
2071 * linux-low.c (regsets_fetch_inferior_registers): Swap ptrace
2072 syscall arguments for SPARC.
2073 (regsets_store_inferior_registers): Likewise.
2074 * linux-sparc-low.c: New file.
2075
2076 2008-10-21 Doug Evans <dje@google.com>
2077
2078 * Makefile.in (BFD_DIR,BFD,BFD_SRC,BFD_CFLAGS): Delete.
2079 (READLINE_DIR,READLINE_DEP): Delete.
2080 (INTERNAL_CFLAGS): Update.
2081 (LINTFLAGS): Update.
2082
2083 2008-10-10 Pedro Alves <pedro@codesourcery.com>
2084
2085 * server.c (handle_v_run): If GDB didn't specify an argv, use the
2086 whole argv from the last run, not just argv[0].
2087
2088 2008-09-08 Pedro Alves <pedro@codesourcery.com>
2089
2090 * regcache.c (new_register_cache): Return NULL if the register
2091 cache size isn't known yet.
2092 (free_register_cache): Avoid dereferencing a NULL regcache.
2093
2094 2008-09-04 Daniel Jacobowitz <dan@codesourcery.com>
2095
2096 * configure.srv: Merge MIPS and MIPS64.
2097
2098 2008-08-24 Maciej W. Rozycki <macro@linux-mips.org>
2099
2100 * Makefile.in (uninstall): Apply $(EXEEXT) too.
2101
2102 2008-08-18 Luis Machado <luisgpm@br.ibm.com>
2103
2104 * Makefile.in: Add required vsx dependencies.
2105
2106 * linux-ppc-low: Define PPC_FEATURE_HAS_VSX.
2107 Declare init_registers_powerpc_vsx32l.
2108 Declare init_registers_powerpc_vsx64l.
2109 Define PTRACE_GETVSXREGS and PTRACE_SETVSXREGS.
2110 (ppc_arch_setup): Check for VSX in hwcap.
2111 (ppc_fill_vsxregset): New function.
2112 (ppc_store_vsxregset): New function.
2113 Add new VSX entry in regset_info target_regsets.
2114
2115 * configure.srv: Add new VSX dependencies.
2116
2117 2008-08-12 Pedro Alves <pedro@codesourcery.com>
2118
2119 * remote-utils.c (noack_mode, transport_is_reliable): New globals.
2120 (remote_open): Set or clear transport_is_reliable.
2121 (putpkt_binary): Don't expect acks in noack mode.
2122 (getpkt): Don't send ack/nac in noack mode.
2123 * server.c (handle_general_set): Handle QStartNoAckMode.
2124 (handle_query): If connected by tcp pass QStartNoAckMode+ in
2125 qSupported.
2126 (main): Reset noack_mode on every connection.
2127 * server.h (noack_mode): Declare.
2128
2129 2008-08-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2130
2131 * Makefile.in (GDBREPLAY_OBS): New variable.
2132 (gdbreplay$(EXEEXT)): Use it to avoid unportable $^.
2133
2134 2008-08-05 Ulrich Weigand <uweigand@de.ibm.com>
2135 Daniel Jacobowitz <dan@codesourcery.com>
2136
2137 * linux-low.c (linux_resume_one_process): Ignore ESRCH.
2138 (usr_store_inferior_registers): Likewise.
2139 (regsets_store_inferior_registers): Likewise.
2140
2141 2008-07-31 Rolf Jansen <rj@surtec.com>
2142 Pedro Alves <pedro@codesourcery.com>
2143
2144 * configure.ac: Check for memmem declaration.
2145 * server.c [HAVE_MALLOC_H]: Include malloc.h.
2146 (disable_packet_vCont, disable_packet_Tthread, disable_packet_qC)
2147 (disable_packet_qfThreadInfo): Unconditionally compile.
2148 * server.h [!HAVE_DECL_MEMMEM]: Declare memmem.
2149 * configure, config.in: Regenerate.
2150
2151 2008-07-28 Doug Kwan <dougkwan@google.com>
2152
2153 * linux-low.c (sys/dir.h, sys/user.h): Remove includes.
2154 (linux_write_memory): Remove declaration of errno.
2155
2156 2008-07-12 Ulrich Weigand <uweigand@de.ibm.com>
2157
2158 * linux-low.c (handle_extended_wait): Do not use "status"
2159 variable uninitialized.
2160
2161 2008-07-07 Pedro Alves <pedro@codesourcery.com>
2162
2163 * server.c (handle_v_attach): Inhibit reporting dll changes.
2164
2165 2008-06-27 Pedro Alves <pedro@codesourcery.com>
2166
2167 * remote-utils.c (prepare_resume_reply): If requested, don't
2168 output "thread:TID" in the T stop reply.
2169
2170 * server.c (disable_packet_vCont, disable_packet_Tthread)
2171 (disable_packet_qC, disable_packet_qfThreadInfo): New globals.
2172 (handle_query): If requested, disable support for qC, qfThreadInfo
2173 and qsThreadInfo.
2174 (handle_v_requests): If requested, disable support for vCont.
2175 (gdbserver_show_disableable): New.
2176 (main): Handle --disable-packet and --disable-packet=LIST.
2177
2178 * server.h (disable_packet_vCont, disable_packet_Tthread)
2179 (disable_packet_qC, disable_packet_qfThreadInfo): Declare.
2180
2181 2008-06-20 Carlos O'Donell <carlos@codesourcery.com>
2182
2183 * server.c (gdbserver_usage): Mention --version.
2184
2185 2008-06-06 Daniel Jacobowitz <dan@codesourcery.com>
2186
2187 * Makefile.in (gdbreplay.o): New rule.
2188
2189 2008-06-06 Joseph Myers <joseph@codesourcery.com>
2190
2191 * gdbreplay.c (gdbreplay_version): Say gdbreplay in version
2192 message, not gdbserver.
2193
2194 2008-06-05 Vladimir Prus <vladimir@codesourcery.com>
2195 Nathan Sidwell <nathan@codesourcery.com>
2196 Joseph Myers <joseph@codesourcery.com>
2197
2198 * acinclude.m4: Include ../../config/acx.m4.
2199 * configure.ac: Use ACX_PKGVERSION and ACX_BUGURL.
2200 * configure, config.in: Regenerate.
2201 * Makefile.in (gdbreplay$(EXEEXT)): Add version.o.
2202 * server.c (gdbserver_version): Print PKGVERSION.
2203 (gdbsrever_usage): Add stream parameter. Print REPORT_BUGS_TO.
2204 (main): Adjust gdbserver_usage calls.
2205 * gdbreplay.c (version, host_name): Add declarations.
2206 (gdbreplay_version, gdbreplay_usage): New.
2207 (main): Accept --version and --help options.
2208
2209 2008-06-04 Daniel Jacobowitz <dan@codesourcery.com>
2210
2211 * linux-arm-low.c (thumb_breakpoint, thumb_breakpoint_len): New.
2212 (arm_breakpoint_at): Handle Thumb.
2213 (the_low_target): Add comment.
2214
2215 2008-05-29 Ulrich Weigand <uweigand@de.ibm.com>
2216
2217 * linux-ppc-low.c (ppc_collect_ptrace_register): Clear buffer.
2218
2219 2008-05-09 Doug Evans <dje@google.com>
2220
2221 * server.h (decode_search_memory_packet): Declare.
2222 * remote-utils.c (decode_search_memory_packet): New fn.
2223 * server.c (handle_search_memory_1): New fn.
2224 (handle_search_memory): New fn.
2225 (handle_query): Process qSearch:memory packets.
2226
2227 2008-05-08 Ulrich Weigand <uweigand@de.ibm.com>
2228
2229 * regcache.c (registers_length): Remove.
2230 (set_register_cache): Verify that PBUFSIZ is large enough to hold a
2231 full register packet.
2232 * regcache.h (registers_length): Remove prototype.
2233 * server.h (PBUFSIZ): Define to 16384.
2234
2235 2008-05-03 Ulrich Weigand <uweigand@de.ibm.com>
2236
2237 * configure.srv (powerpc*-*-linux*): Set srv_regobj to
2238 powerpc-32l.o, powerpc-altivec32l.o, powerpc-e500l.o,
2239 powerpc-64l.o, and powerpc-altivec64l.o.
2240 Remove rs6000/powerpc-32.xml, rs6000/powerpc-64.xml, and
2241 rs6000/powerpc-e500.xml; add rs6000/powerpc-32l.xml,
2242 rs6000/powerpc-altivec32l.xml, rs6000/powerpc-e500l.xml,
2243 rs6000/powerpc-64l.xml, rs6000/powerpc-altivec64l.xml,
2244 rs6000/power-linux.xml, and rs6000/power64-linux.xml
2245 to srv_xmlfiles.
2246
2247 * Makefile.in (reg-ppc.o, reg-ppc.c): Remove, replace by ...
2248 (powerpc-32l.o, powerpc-32l.c): ... these new rules.
2249 (powerpc-32.o, powerpc-32.c): Remove, replace by ...
2250 (powerpc-altivec32l.o, powerpc-altivec32l.c): ... these new rules.
2251 (powerpc-e500.o, powerpc-e500.c): Remove, replace by ...
2252 (powerpc-e500l.o, powerpc-e500l.c): ... these new rules.
2253 (reg-ppc64.o, reg-ppc64.c): Remove, replace by ...
2254 (powerpc-64l.o, powerpc-64l.c): ... these new rules.
2255 (powerpc-64.o, powerpc-64.c): Remove, replace by ...
2256 (powerpc-altivec64l.o, powerpc-altivec64l.c): ... these new rules.
2257 (clean): Update.
2258
2259 * linux-ppc-low.c (init_registers_ppc): Remove, replace by ...
2260 (init_registers_powerpc_32l): ... this new prototype.
2261 (init_registers_powerpc_32): Remove, replace by ...
2262 (init_registers_powerpc_altivec32l): ... this new prototype.
2263 (init_registers_powerpc_e500): Remove, replace by ...
2264 (init_registers_powerpc_e500l): ... this new prototype.
2265 (init_registers_ppc64): Remove, replace by ...
2266 (init_registers_powerpc_64l): ... this new prototype.
2267 (init_registers_powerpc_64): Remove, replace by ...
2268 (init_registers_powerpc_altivec64l): ... this new prototype.
2269 (ppc_num_regs): Set to 73.
2270 (PT_ORIG_R3, PT_TRAP): Define if necessary.
2271 (ppc_regmap, ppc_regmap_e500): Add values for orig_r3 and trap.
2272 (ppc_cannot_store_register): Handle orig_r3 and trap.
2273 (ppc_arch_setup): Update init_registers_... calls.
2274 (ppc_fill_gregset): Handle orig_r3 and trap.
2275
2276 * inferiors.c (clear_inferiors): Reset current_inferior.
2277
2278 2008-04-23 Paolo Bonzini <bonzini@gnu.org>
2279
2280 * acinclude.m4: Add override.m4.
2281 * configure: Regenerate.
2282
2283 2008-04-21 Ulrich Weigand <uweigand@de.ibm.com>
2284
2285 * linux-ppc-low.c (ppc_arch_setup): Reset ppc_hwcap after the
2286 initial call to init_register_ppc64.
2287
2288 2008-04-21 Ulrich Weigand <uweigand@de.ibm.com>
2289
2290 * configure.srv (powerpc64-*-linux*, powerpc-*-linux*): Merge into single
2291 powerpc*-*-linux* case.
2292 (s390-*-linux*, s390x-*-linux*): Merge into single s390*-*-linux* case.
2293
2294 2008-04-17 Ulrich Weigand <uweigand@de.ibm.com>
2295
2296 * configure.srv [powerpc64-*-linux*]: Remove powerpc-e500.o from
2297 srv_regobj. Remove rs6000/powerpc-e500.xml and rs6000/power-spe.xml
2298 from reg_xmlfiles.
2299 * linux-ppc-low.c: Include <elf.h>.
2300 (PPC_FEATURE_HAS_ALTIVEC, PPC_FEATURE_HAS_SPE): Define.
2301 (ppc_hwcap): New global variable.
2302 (ppc_regmap): Remove __SPE__ #ifdef sections.
2303 (ppc_regmap_e500): New global variable.
2304 (ppc_cannot_store_register): Update __SPE__ special case.
2305 (ppc_get_hwcap): New function.
2306 (ppc_arch_setup): Use it to determine whether inferior supports
2307 AltiVec or SPE registers. Set the_low_target.regmap if appropriate.
2308 (ppc_fill_vrregset, ppc_store_vrregset): Define unconditionally.
2309 Do not access registers if target does not support AltiVec.
2310 (ppc_fill_evrregset, ppc_store_evrregset): Define unconditionally.
2311 Do not access registers if target does not support SPE.
2312 (target_regsets): Unconditionally include AltiVec and SPE regsets.
2313
2314 2008-04-17 Daniel Jacobowitz <dan@codesourcery.com>
2315
2316 * linux-low.c (disabled_regsets, num_regsets): New.
2317 (use_regsets_p): Delete.
2318 (linux_wait_for_process): Clear disabled_regsets.
2319 (regsets_fetch_inferior_registers): Check and set it.
2320 (regsets_store_inferior_registers): Likewise.
2321 (linux_fetch_registers, linux_store_registers): Do not use
2322 use_regsets_p.
2323 (initialize_low): Allocate disabled_regsets.
2324
2325 2008-04-14 Daniel Jacobowitz <dan@codesourcery.com>
2326
2327 * Makefile.in (LIBOBJS): New.
2328 (OBS): Use LIBOBJS.
2329 (memmem.o): New rule.
2330 * configure.ac: Use AC_CONFIG_LIBOBJ_DIR and check for memmem.
2331 * configure: Regenerated.
2332
2333 2008-04-04 Ulrich Weigand <uweigand@de.ibm.com>
2334
2335 * server.c (handle_query): Never return "unsupported" for
2336 qXfer:features:read queries.
2337
2338 2008-03-27 Ulrich Weigand <uweigand@de.ibm.com>
2339
2340 * server.c (get_features_xml): Fix inverted condition.
2341 (handle_query): Always support qXfer:feature:read.
2342
2343 2008-03-10 Daniel Jacobowitz <dan@codesourcery.com>
2344
2345 * server.c (wrapper_argv): New.
2346 (start_inferior): Handle wrapper_argv. If set, expect an extra
2347 trap.
2348 (gdbserver_usage): Document --wrapper.
2349 (main): Parse --wrapper.
2350
2351 2008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
2352
2353 * configure.srv [powerpc64-*-linux*]: Add all files mentioned for
2354 powerpc-*-linux* to srv_regobj and reg_xmlfiles.
2355 * linux-ppc-low.c (ppc_get_pc): Support bi-arch operation.
2356 (ppc_set_pc): Likewise.
2357 (ppc_arch_setup): New function.
2358 (ppc_fill_gregset): Call ppc_collect_ptrace_register instead
2359 of collect_register.
2360 (the_low_target): Use ppc_arch_setup as arch_setup initializer.
2361
2362 2008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
2363
2364 * configure.srv [powerpc64-*-linux*]: Use linux-ppc-low.o
2365 instead of linux-ppc64-low.o.
2366 * linux-ppc64-low.c: Remove file.
2367 * Makefile.in (SFILES): Remove linux-ppc64-low.c.
2368 (linux-ppc64-low.o): Remove rule.
2369
2370 * linux-ppc-low.c (init_registers_ppc64): Add prototype.
2371 (init_registers_powerpc_64): Likewise.
2372 (ppc_regmap): Conditionally define depending on __powerpc64__.
2373 (ppc_cannot_store_register): Do not special-case "fpscr" when
2374 compiled on __powerpc64__.
2375 (ppc_collect_ptrace_register): New function.
2376 (ppc_supply_ptrace_register): New function.
2377 (ppc_breakpoint): Change type to "unsigned int".
2378 (ppc_breakpoint_at): Change type of "insn" to "unsigned int".
2379 (the_low_target): Conditionally provide initializers for the
2380 arch_setup member depending on __powerpc64__. Install
2381 collect_ptrace_register and supply_ptrace_register members.
2382
2383 2008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
2384
2385 * regcache.h (gdbserver_xmltarget): Add extern declaration.
2386 * server.c (gdbserver_xmltarget): Define.
2387 (get_features_xml): Use it to replace "target.xml" and arch_string.
2388
2389 * configure.srv: Remove srv_xmltarget. Add XML files that were
2390 mentioned there to srv_xmlfiles instead. Remove conditional tests
2391 on gdb_cv_arm_iwmmxt, gdb_cv_ppc_altivec, gdb_cv_ppc_spe; set
2392 srv_xmlfiles and srv_regobj to include all possible choices.
2393 * configure.ac (srv_xmltarget): Remove.
2394 (srv_xmlfiles): Do not add "target.xml".
2395 (gdb_cv_arm_iwmmxt, gdb_cv_ppc_altivec, gdb_cv_ppc_spe): Remove
2396 checks for supplementary target information.
2397 * configure: Regenerate.
2398 * Makefile.in (XML_TARGET): Remove.
2399 (target.xml): Remove rule.
2400 (clean): Do not clean up target.xml.
2401 (.PRECIOUS): Do not mention target.xml.
2402
2403 * target.h (struct target_ops): Remove arch_string member.
2404 * linux-low.c (linux_arch_string): Remove.
2405 (linux_target_ops): Remove arch_string initializer.
2406 * linux-low.h (struct linux_target_ops): Remove arch_string member.
2407 * linux-i386-low.c (the_low_target): Remove arch_string initializer.
2408 * linux-x86-64-low.c (the_low_target): Remove arch_string initializer.
2409 * spu-low.c (spu_arch_string): Remove.
2410 (spu_target_ops): Remove arch_string initializer.
2411 * win32-low.c (win32_arch_string): Remove.
2412 (win32_target_ops): Remove arch_string initializer.
2413 * win32-low.h (struct win32_target_ops): Remove arch_string member.
2414 * win32-arm-low.c (the_low_target): Remove arch_string initializer.
2415 * win32-i368-low.c (the_low_target): Remove arch_string initializer.
2416
2417 2008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
2418
2419 * linux-low.h (struct linux_target_ops): Replace left_pad_xfer field
2420 by collect_ptrace_register and supply_ptrace_register hooks.
2421 * linux-low.c (fetch_register): Use supply_ptrace_register callback
2422 instead of checking for the_low_target.left_pad_xfer.
2423 (usr_store_inferior_registers): Use collect_ptrace_register callback
2424 instead of checking for the_low_target.left_pad_xfer.
2425
2426 * linux-s390-low.c (s390_collect_ptrace_register): New function.
2427 (s390_supply_ptrace_register): Likewise.
2428 (s390_fill_gregset): Call s390_collect_ptrace_register.
2429 (the_low_target): Update.
2430
2431 * linux-ppc64-low.c (ppc_collect_ptrace_register): New function.
2432 (ppc_supply_ptrace_register): Likewise.
2433 (the_low_target): Update.
2434
2435 * linux-i386-low.c (the_low_target): Update.
2436 * linux-x86-64-low.c (the_low_target): Update.
2437
2438 2008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
2439
2440 * configure.srv [s390x-*-linux*]: Set srv_regobj to include both
2441 reg-s390.o and reg-s390x.o.
2442
2443 * linux-low.c (new_inferior): New global variable.
2444 (linux_create_inferior, linux_attach): Set it.
2445 (linux_wait_for_process): Call the_low_target.arch_setup after the
2446 target has stopped for the first time.
2447 (initialize_low): Do not call the_low_target.arch_setup.
2448
2449 * linux-s390-low.c (s390_get_pc): Support bi-arch operation.
2450 (s390_set_pc): Likewise.
2451 (s390_arch_setup): New function.
2452 (the_low_target): Use s390_arch_setup as arch_setup routine.
2453
2454 * regcache.c (realloc_register_cache): New function.
2455 (set_register_cache): Call it for each existing regcache.
2456
2457 2008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
2458
2459 * server.h (init_registers): Remove prototype.
2460
2461 * linux-low.h (struct linux_target_ops): Add arch_setup field.
2462 * linux-low.c (initialize_low): Call the_low_target.arch_setup ()
2463 instead of init_registers ().
2464 * linux-arm-low.c (init_registers_arm): Add prototype.
2465 (init_registers_arm_with_iwmmxt): Likewise.
2466 (the_low_target): Add initializer for arch_setup field.
2467 * linux-cris-low.c (init_registers_cris): Add prototype.
2468 (the_low_target): Add initializer for arch_setup field.
2469 * linux-crisv32-low.c (init_registers_crisv32): Add prototype.
2470 (the_low_target): Add initializer for arch_setup field.
2471 * linux-i386-low.c (init_registers_i386_linux): Add prototype.
2472 (the_low_target): Add initializer for arch_setup field.
2473 * linux-ia64-low.c (init_registers_ia64): Add prototype.
2474 (the_low_target): Add initializer for arch_setup field.
2475 * linux-m32r-low.c (init_registers_m32r): Add prototype.
2476 (the_low_target): Add initializer for arch_setup field.
2477 * linux-m68k-low.c (init_registers_m68k): Add prototype.
2478 (the_low_target): Add initializer for arch_setup field.
2479 * linux-mips-low.c (init_registers_mips_linux): Add prototype.
2480 (init_registers_mips64_linux): Likewise.
2481 (the_low_target): Add initializer for arch_setup field.
2482 * linux-ppc-low.c (init_registers_ppc): Add prototype.
2483 (init_registers_powerpc_32, init_registers_powerpc_e500): Likewise.
2484 (the_low_target): Add initializer for arch_setup field.
2485 * linux-ppc64-low.c (init_registers_ppc64): Add prototype.
2486 (init_registers_powerpc_64): Likewise.
2487 (the_low_target): Add initializer for arch_setup field.
2488 * linux-s390-low.c (init_registers_s390): Add prototype.
2489 (init_registers_s390x): Likewise.
2490 (the_low_target): Add initializer for arch_setup field.
2491 * linux-sh-low.c (init_registers_sh): Add prototype.
2492 (the_low_target): Add initializer for arch_setup field.
2493 * linux-x86-64-low.c (init_registers_x86_64_linux): Add prototype.
2494 (the_low_target): Add initializer for arch_setup field.
2495 * linux-xtensa-low.c (init_registers_xtensa): Add prototype.
2496 (the_low_target): Add initializer for arch_setup field.
2497
2498 * win32-low.h (struct win32_target_ops): Add arch_setup field.
2499 * win32-low.c (initialize_low): Call the_low_target.arch_setup ()
2500 instead of init_registers ().
2501 * win32-arm-low.c (init_registers_arm): Add prototype.
2502 (the_low_target): Add initializer for arch_setup field.
2503 * win32-i386-low.c (init_registers_i386): Add prototype.
2504 (the_low_target): Add initializer for arch_setup field.
2505
2506 * spu-low.c (init_registers_spu): Add prototype.
2507 (initialize_low): Call initialie_registers_spu () instead of
2508 initialize_registers ().
2509
2510 2008-02-19 Pedro Alves <pedro@codesourcery.com>
2511
2512 * server.c (handle_v_requests): When handling the vRun and vAttach
2513 packets, if already debugging a process, don't kill it. Return an
2514 error instead.
2515
2516 2008-02-17 Daniel Jacobowitz <dan@codesourcery.com>
2517
2518 * server.c (handle_query): Correct length check.
2519
2520 2008-02-14 Pedro Alves <pedro_alves@portugalmail.pt>
2521
2522 * win32-low.c (do_initial_child_stuff): Add process handle
2523 parameter. Set current_process_handle and current_process_id from the
2524 parameters. Clear globals.
2525 (win32_create_inferior): Don't set current_process_handle and
2526 current_process_id here. Instead pass them on the call to
2527 do_initial_child_stuff.
2528 (win32_attach): Likewise.
2529 (win32_clear_inferiors): New.
2530 (win32_kill): Don't close the current process handle or the
2531 current thread handle here. Instead call win32_clear_inferiors.
2532 (win32_detach): Don't open a new handle to the process. Call
2533 win32_clear_inferiors.
2534 (win32_join): Don't rely on current_process_handle; open a new
2535 handle using the process id.
2536 (win32_wait): Call win32_clear_inferiors when the inferior process
2537 has exited.
2538
2539 2008-02-14 Daniel Jacobowitz <dan@codesourcery.com>
2540
2541 * server.c (monitor_show_help): Add "exit".
2542
2543 2008-02-11 Maxim Grigoriev <maxim2405@gmail.com>
2544
2545 * Makefile.in (SFILES): Add linux-xtensa-low.c.
2546 (clean): Add reg-xtensa.c.
2547 (linux-xtensa-low.o, reg-xtensa.o, reg-xtensa.c): New dependencies.
2548 * configure.srv (xtensa*-*-linux*) New target.
2549 * linux-xtensa-low.c: New.
2550 * xtensa-xtregs.c: New.
2551
2552 2008-02-01 Pedro Alves <pedro_alves@portugalmail.pt>
2553
2554 * hostio.c: Don't include errno.h.
2555 (errno_to_fileio_errno): Move to hostio-errno.
2556 * hostio.c: (hostio_error): Remove the error parameter. Defer the
2557 error number outputting to the target->hostio_last_error callback.
2558 (hostio_packet_error): Use FILEIO_EINVAL directly.
2559 (handle_open, handle_pread, hostio_error, handle_unlink): Update
2560 calls to hostio_error.
2561 * hostio-errno.c: New.
2562 * server.h (hostio_last_error_from_errno): Declare.
2563 * target.h (target_ops): Add hostio_last_error member.
2564 * linux-low.c (linux_target_op): Register hostio_last_error_from_errno
2565 as hostio_last_error handler.
2566 * spu-low.c (spu_target_ops): Likewise.
2567 * win32-low.c [_WIN32_WCE] (win32_error_to_fileio_error)
2568 (wince_hostio_last_error): New functions.
2569 (win32_target_ops) [_WIN32_WCE]: Register wince_hostio_last_error
2570 as hostio_last_error handler.
2571 (win32_target_ops) [!_WIN32_WCE]: Register
2572 hostio_last_error_from_errno as hostio_last_error handler.
2573 * Makefile.in (SFILES): Add hostio.c and hostio-errno.c.
2574 (hostio-errno.o): New rule.
2575 * configure.ac (GDBSERVER_DEPFILES): Add $srv_hostio_err_objs.
2576 * configure.srv (srv_hostio_err_objs): New variable. Default to
2577 hostio-errno.o.
2578 (arm*-*-mingw32ce*): Set srv_hostio_err_objs to "".
2579 * configure: Regenerate.
2580
2581 2008-01-29 Daniel Jacobowitz <dan@codesourcery.com>
2582
2583 * linux-low.c (linux_attach_lwp): Do not _exit after errors.
2584 (linux_kill, linux_detach): Clean up the process list.
2585 * remote-utils.c (remote_open): Improve port number parsing.
2586 (putpkt_binary, input_interrupt): Only send interrupts if the target
2587 is running.
2588 * server.c (extended_protocol): Make static.
2589 (attached): Define earlier.
2590 (exit_requested, response_needed, program_argv): New variables.
2591 (target_running): New.
2592 (start_inferior): Clear attached here.
2593 (attach_inferior): Set attached here.
2594 (require_running): Define.
2595 (handle_query): Use require_running and target_running. Implement
2596 "monitor exit".
2597 (handle_v_attach, handle_v_run): New.
2598 (handle_v_requests): Use require_running. Handle vAttach and vRun.
2599 (gdbserver_usage): Update.
2600 (main): Redo argument parsing. Handle --debug and --multi. Handle
2601 --attach along with other options or after the port. Save
2602 program_argv. Support no initial program. Resynchronize
2603 communication with GDB after an error. Handle "monitor exit".
2604 Use require_running and target_running. Always allow the extended
2605 protocol. Do not error out for Hc0 or Hc-1. Do not automatically
2606 restart in extended mode.
2607 * README: Refer to the GDB manual. Update --attach usage.
2608
2609 2007-12-20 Andreas Schwab <schwab@suse.de>
2610
2611 * linux-low.c (STACK_SIZE): Define.
2612 (linux_tracefork_child): Use it. Use __clone2 on ia64.
2613 (linux_test_for_tracefork): Likewise.
2614
2615 2007-12-18 Daniel Jacobowitz <dan@codesourcery.com>
2616
2617 * linux-low.c (linux_wait_for_event): Update messages. Do not
2618 reinsert auto-delete breakpoints.
2619 * mem-break.c (struct breakpoint): Change return type of handler to
2620 int.
2621 (set_breakpoint_at): Update handler type.
2622 (reinsert_breakpoint_handler): Return 1 instead of calling
2623 delete_breakpoint.
2624 (reinsert_breakpoint_by_bp): Check for the original breakpoint before
2625 setting a new one.
2626 (check_breakpoints): Delete auto-delete breakpoints and return 2.
2627 * mem-break.h (set_breakpoint_at): Update handler type.
2628 * thread-db.c (thread_db_create_event, thread_db_create_event): Update.
2629 * win32-low.c (auto_delete_breakpoint): New.
2630 (get_child_debug_event): Use it.
2631
2632 2007-12-16 Daniel Jacobowitz <dan@codesourcery.com>
2633
2634 * configure.ac: Check for pread and pwrite.
2635 * hostio.c (handle_pread): Fall back to lseek and read.
2636 (handle_pwrite): Fall back to lseek and write.
2637 * config.in, configure: Regenerated.
2638
2639 2007-12-07 Daniel Jacobowitz <dan@codesourcery.com>
2640
2641 * server.c (myresume): Add own_buf argument.
2642 (main): Update calls.
2643
2644 2007-12-06 Daniel Jacobowitz <dan@codesourcery.com>
2645
2646 * linux-low.c (linux_wait, linux_resume): Do not handle async I/O.
2647 * remote-utils.c (remote_open): Do not call disable_async_io.
2648 (block_async_io): Delete.
2649 (unblock_async_io): Make static.
2650 (initialize_async_io): New.
2651 * server.c (handle_v_cont): Handle async I/O here.
2652 (myresume): Likewise. Move other common resume tasks here...
2653 (main): ... from here. Call initialize_async_io. Disable async
2654 I/O before the main loop.
2655 * server.h (initialize_async_io): Declare.
2656 (block_async_io, unblock_async_io): Delete prototypes.
2657 * spu-low.c (spu_resume, spu_wait): Do not handle async I/O here.
2658
2659 2007-12-06 Mick Davis <mickd@goanna.iinet.net.au>
2660
2661 * remote-utils.c (readchar): Allow binary data in received messages.
2662
2663 2007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
2664
2665 * win32-low.c (attaching): New global.
2666 (win32_create_inferior): Clear the `attaching' global.
2667 (win32_attach): Set the `attaching' global.
2668 (get_child_debug_event) [_WIN32_WCE]: Stop the inferior when
2669 attaching. Only set a breakpoint at the entry point if not
2670 attaching.
2671
2672 2007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
2673
2674 * server.c (main): Don't report dll events on the initial
2675 connection on attaches.
2676
2677 2007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
2678
2679 * server.c (main): Relax numerical bases supported for the pid of
2680 the --attach command line argument.
2681
2682 2007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
2683
2684 * win32-low.c (win32_attach): Call OpenProcess before
2685 DebugActiveProcess, not after. Add last error output to error
2686 call.
2687
2688 2007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
2689
2690 * win32-low.c (win32_get_thread_context)
2691 (win32_set_thread_context): New functions.
2692 (thread_rec): Use win32_get_thread_context.
2693 (continue_one_thread, win32_resume): Use win32_set_thread_context.
2694 * win32-low.h (win32_thread_info) [_WIN32_WCE]: Add `base_context'
2695 field.
2696
2697 2007-12-03 Leo Zayas
2698 Pedro Alves <pedro_alves@portugalmail.pt>
2699
2700 * win32-low.c (soft_interrupt_requested, faked_breakpoint): New
2701 global variables.
2702 (child_add_thread): Minor cleanup.
2703 (child_continue): Resume artificially suspended threads before
2704 calling ContinueDebugEvent.
2705 (suspend_one_thread): New.
2706 (fake_breakpoint_event): New.
2707 (get_child_debug_event): Change return type to int. Check here if
2708 gdb sent an interrupt request. If a soft interrupt was requested,
2709 fake a breakpoint event. Return 0 if there is no event to handle,
2710 and 1 otherwise.
2711 (win32_wait): Don't check here if gdb sent an interrupt request.
2712 Ensure there is a valid event to handle.
2713 (win32_request_interrupt): Add soft interruption method as last
2714 resort.
2715
2716 2007-12-03 Leo Zayas
2717 Pedro Alves <pedro_alves@portugalmail.pt>
2718
2719 * win32-low.h (win32_thread_info): Add descriptions to the
2720 structure members. Replace `suspend_count' counter by a
2721 `suspended' flag.
2722 * win32-low.c (thread_rec): Update condition of when to get the
2723 context from the inferior. Rely on ContextFlags being set if it
2724 has already been retrieved. Only suspend the inferior thread if
2725 we haven't already. Warn if that fails.
2726 (continue_one_thread): s/suspend_count/suspended/. Only call
2727 ResumeThread once. Warn if that fails.
2728
2729 2007-12-02 Pedro Alves <pedro_alves@portugalmail.pt>
2730
2731 * win32-low.c (win32_wait): Don't read from the inferior when it
2732 has already exited.
2733
2734 2007-12-02 Pedro Alves <pedro_alves@portugalmail.pt>
2735
2736 * Makefile.in (win32_low_h): New variable.
2737 (win32-low.o): Add dependency on $(win32_low_h).
2738 (win32-arm-low.o, win32-i386-low.o): New rules.
2739
2740 2007-11-30 Daniel Jacobowitz <dan@codesourcery.com>
2741
2742 * hostio.c: Correct copyright year.
2743
2744 2007-11-30 Daniel Jacobowitz <dan@codesourcery.com>
2745
2746 * Makefile.in (OBS): Add hostio.o.
2747 (hostio.o): New rule.
2748 * server.h (handle_vFile): Declare.
2749 * hostio.c: New file.
2750 * server.c (handle_v_requests): Take packet_len and new_packet_len
2751 for binary packets. Call handle_vFile.
2752 (main): Update call to handle_v_requests.
2753
2754 2007-11-05 Daniel Jacobowitz <dan@codesourcery.com>
2755
2756 * linux-low.c: Include <sched.h>.
2757
2758 2007-11-01 Daniel Jacobowitz <dan@codesourcery.com>
2759
2760 * linux-low.c (linux_tracefork_grandchild): New.
2761 (linux_tracefork_child): Use clone.
2762 (linux_test_for_tracefork): Use clone; allocate and free a stack.
2763
2764 2007-10-31 Joel Brobecker <brobecker@adacore.com>
2765
2766 * Makefile.in: Use $(SHELL) instead of "sh" to call regdat.sh.
2767
2768 2007-10-24 Daniel Jacobowitz <dan@codesourcery.com>
2769
2770 * linux-low.c (handle_extended_wait): Handle unexpected signals.
2771
2772 2007-10-23 Daniel Jacobowitz <dan@codesourcery.com>
2773
2774 * inferiors.c (change_inferior_id): Delete.
2775 (add_pid_to_list, pull_pid_from_list): New.
2776 * linux-low.c (PTRACE_SETOPTIONS, PTRACE_GETEVENTMSG)
2777 (PTRACE_O_TRACESYSGOOD, PTRACE_O_TRACEFORK, PTRACE_O_TRACEVFORK)
2778 (PTRACE_O_TRACECLONE, PTRACE_O_TRACEEXEC, PTRACE_O_TRACEVFORKDONE)
2779 (PTRACE_O_TRACEEXIT, PTRACE_EVENT_FORK, PTRACE_EVENT_VFORK)
2780 (PTRACE_EVENT_CLONE, PTRACE_EVENT_EXEC, PTRACE_EVENT_VFORK_DONE)
2781 (PTRACE_EVENT_EXIT, __WALL): Provide default definitions.
2782 (stopped_pids, thread_db_active, must_set_ptrace_flags): New variables.
2783 (using_threads): Always set to 1.
2784 (handle_extended_wait): New.
2785 (add_process): Do not set TID.
2786 (linux_create_inferior): Set must_set_ptrace_flags.
2787 (linux_attach_lwp): Remove TID argument. Do not check using_threads.
2788 Use PTRACE_SETOPTIONS. Call new_thread_notify. Update all callers.
2789 (linux_thread_alive): Rename TID argument to LWPID.
2790 (linux_wait_for_process): Handle unknown processes. Do not use TID.
2791 (linux_wait_for_event): Do not use TID or check using_threads. Update
2792 call to dead_thread_notify. Call handle_extended_wait.
2793 (linux_create_inferior): Use PTRACE_SETOPTIONS.
2794 (send_sigstop): Delete sigstop_sent.
2795 (wait_for_sigstop): Avoid TID.
2796 (linux_supports_tracefork_flag, linux_tracefork_child, my_waitpid)
2797 (linux_test_for_tracefork): New.
2798 (linux_lookup_signals): Use thread_db_active and
2799 linux_supports_tracefork_flag.
2800 (initialize_low): Use thread_db_active and linux_test_for_tracefork.
2801 * linux-low.h (get_process_thread): Avoid TID.
2802 (struct process_ifo): Move thread_known and tid to the end. Remove
2803 sigstop_sent.
2804 (linux_attach_lwp, thread_db_init): Update prototypes.
2805 * server.h (change_inferior_id): Delete prototype.
2806 (add_pid_to_list, pull_pid_from_list): New prototypes.
2807 * thread-db.c (thread_db_use_events): New.
2808 (find_first_thread): Rename to...
2809 (find_one_thread): ...this. Update callers and messages. Do not
2810 call fatal. Check thread_db_use_events. Do not call
2811 change_inferior_id or new_thread_notify.
2812 (maybe_attach_thread): Update. Do not call new_thread_notify.
2813 (thread_db_init): Set thread_db_use_events. Check use_events.
2814 * utils.c (fatal, warning): Correct message prefix.
2815
2816 2007-10-15 Daniel Jacobowitz <dan@codesourcery.com>
2817
2818 * Makefile.in (clean): Remove new files.
2819 (powerpc-32.o, powerpc-32.c, powerpc-e500.o, powerpc-e500.c)
2820 (powerpc-64.o, powerpc-64.c): New rules.
2821 * configure.srv: Use alternate register sets for powerpc64-*-linux*
2822 with AltiVec, powerpc-*-linux* with AltiVec, and powerpc-*-linux*
2823 with SPE.
2824 * linux-ppc-low.c (ppc_regmap): Do not fetch the FP registers for
2825 SPE targets.
2826 (ppc_cannot_store_register): Do not check for FPSCR for SPE targets.
2827 (PTRACE_GETVRREGS, PTRACE_SETVRREGS, SIZEOF_VRREGS, ppc_fill_vrregset)
2828 (ppc_store_vrregset, PTRACE_GETEVRREGS, PTRACE_SETEVRREGS)
2829 (struct gdb_evrregset_t, ppc_fill_evrregset, ppc_store_evrregset): New.
2830 (target_regsets): Add AltiVec and SPE register sets.
2831 * configure.ac: Check for AltiVec and SPE.
2832 * linux-ppc64-low.c (PTRACE_GETVRREGS, PTRACE_SETVRREGS, SIZEOF_VRREGS)
2833 (ppc_fill_vrregset, ppc_store_vrregset): New.
2834 (target_regsets): Add AltiVec register set.
2835 * configure: Regenerated.
2836
2837 2007-09-19 Daniel Jacobowitz <dan@codesourcery.com>
2838
2839 * linux-low.c (O_LARGEFILE): Define.
2840 (linux_read_memory): Use /proc/PID/mem.
2841 * configure.ac: Use AC_GNU_SOURCE. Check for pread64.
2842 * configure, config.in: Regenerated.
2843
2844 2007-09-04 Daniel Jacobowitz <dan@codesourcery.com>
2845
2846 * linux-low.c (linux_wait_for_event): Do not pass signals while
2847 single-stepping.
2848
2849 2007-09-03 Pedro Alves <pedro_alves@portugalmail.pt>
2850
2851 * win32-low.c (create_process): New.
2852 (win32_create_inferior): Use create_process instead of
2853 CreateProcess. If create_process failed retry appending an ".exe"
2854 suffix. Store the GetLastError result immediatelly after
2855 create_process calls and use it on the call to error.
2856
2857 2007-09-03 Pedro Alves <pedro_alves@portugalmail.pt>
2858
2859 * win32-low.c (handle_load_dll): Don't use toolhelp when waiting.
2860
2861 2007-08-23 Joel Brobecker <brobecker@adacore.com>
2862
2863 * configure.ac: Switch license to GPLv3.
2864
2865 2007-08-01 Michael Snyder <msnyder@access-company.com>
2866
2867 * remote-utils.c (putpkt_binary): Memory leak, free buf2.
2868
2869 2007-07-31 Pedro Alves <pedro_alves@portugalmail.pt>
2870
2871 * win32-low.c (winapi_CloseToolhelp32Snapshot) [_WIN32_WCE]: New
2872 typedef.
2873 (win32_CloseToolhelp32Snapshot) [_WIN32_WCE]: New global var.
2874 (load_toolhelp) [_WIN32_WCE]: Load TOOLHELP.DLL. Get
2875 CloseToolhelp32Snapshot.
2876 (toolhelp_get_dll_name) [_WIN32_WCE]: Close the snapshot with
2877 CloseToolhelp32Snapshot.
2878
2879 2007-07-27 Michael Snyder <michael.snyder@access-company.com>
2880
2881 * server.c (main): Check for inferior exit before main loop.
2882
2883 2007-07-18 Pedro Alves <pedro_alves@portugalmail.pt>
2884
2885 * remote-utils.c (remote_open): Set SO_KEEPALIVE on remote_desc
2886 instead of on tmp_desc.
2887
2888 2007-07-17 Pedro Alves <pedro_alves@portugalmail.pt>
2889 Daniel Jacobowitz <dan@codesourcery.com>
2890
2891 * inferiors.c (all_dlls, dlls_changed, get_dll): New.
2892 (add_thread): Minor cleanups.
2893 (clear_inferiors): Move lower in the file. Clear the DLL
2894 list.
2895 (free_one_dll, match_dll, loaded_dll, unloaded_dll, clear_list): New.
2896 * remote-utils.c (prepare_resume_reply): Check dlls_changed.
2897 (xml_escape_text): New.
2898 * server.c (handle_query): Handle qXfer:libraries:read. Report it
2899 for qSupported.
2900 (handle_v_cont): Report errors.
2901 (gdbserver_version): Update.
2902 (main): Correct size of own_buf. Do not report initial DLL events.
2903 * server.h (struct dll_info, all_dlls, dlls_changed, loaded_dll)
2904 (unloaded_dll, xml_escape_text): New.
2905 * win32-low.c (enum target_waitkind): Update comments.
2906 (win32_add_one_solib, get_image_name, winapi_EnumProcessModules)
2907 (winapi_GetModuleInformation, winapi_GetModuleFileNameExA)
2908 (win32_EnumProcessModules, win32_GetModuleInformation)
2909 (win32_GetModuleFileNameExA, load_psapi, psapi_get_dll_name)
2910 (winapi_CreateToolhelp32Snapshot, winapi_Module32First)
2911 (winapi_Module32Next, win32_CreateToolhelp32Snapshot)
2912 (win32_Module32First, win32_Module32Next, load_toolhelp)
2913 (toolhelp_get_dll_name, handle_load_dll, handle_unload_dll): New.
2914 (get_child_debug_event): Handle DLL events.
2915 (win32_wait): Likewise.
2916
2917 2007-07-12 Daniel Jacobowitz <dan@codesourcery.com>
2918
2919 * configure.srv: Set srv_linux_regsets for sh*-*-linux*.
2920 * linux-sh-low.c (sh_fill_gregset, target_regsets): New.
2921
2922 2007-07-08 Pedro Alves <pedro_alves@portugalmail.pt>
2923
2924 * win32-low.c (handle_output_debug_string): Ignore event if not
2925 waiting.
2926
2927 2007-07-08 Pedro Alves <pedro_alves@portugalmail.pt>
2928
2929 * win32-arm-low.c (arm_wince_breakpoint): Fix typo.
2930
2931 2007-07-03 Daniel Jacobowitz <dan@codesourcery.com>
2932
2933 * remote-utils.c (look_up_one_symbol): Handle 'm' packets.
2934
2935 2007-07-02 Daniel Jacobowitz <dan@codesourcery.com>
2936
2937 * inferiors.c (change_inferior_id): Add comment.
2938 * linux-low.c (check_removed_breakpoint): Add an early
2939 prototype. Improve debug output.
2940 (linux_attach): Doc update.
2941 (linux_detach_one_process, linux_detach): Clean up before releasing
2942 each process.
2943 (send_sigstop, wait_for_sigstop): Improve comments and debug output.
2944 * linux-low.h (struct process_info): Doc improvement.
2945 * mem-break.c (delete_all_breakpoints): New.
2946 * mem-break.h (delete_all_breakpoints): New prototype.
2947 * thread-db.c (find_first_thread): New.
2948 (thread_db_create_event): Call it instead of
2949 thread_db_find_new_threads. Clean up unused variables.
2950 (maybe_attach_thread): Remove first thread handling.
2951 (thread_db_find_new_threads): Use find_first_thread.
2952 (thread_db_get_tls_address): Likewise.
2953
2954 2007-06-27 Daniel Jacobowitz <dan@codesourcery.com>
2955
2956 * thread-db.c (thread_db_find_new_threads): Add prototype.
2957 (thread_db_create_event): Check for the main thread before adding
2958 a new thread.
2959 (maybe_attach_thread): Only enable event reporting if TID == 0.
2960 (thread_db_get_tls_address): Check for new threads.
2961
2962 2007-06-20 Daniel Jacobowitz <dan@codesourcery.com>
2963
2964 * linux-low.c (linux_create_inferior): Try execv before execvp.
2965 * spu-low.c (spu_create_inferior): Likewise.
2966
2967 2007-06-13 Mike Frysinger <vapier@gentoo.org>
2968
2969 * linux-low.c (linux_create_inferior): Change execv to execvp.
2970 * spu-low.c (spu_create_inferior): Likewies.
2971
2972 2007-06-13 Daniel Jacobowitz <dan@codesourcery.com>
2973
2974 * Makefile.in (clean): Clean new files instead of deleted ones.
2975 (reg-mips.o, reg-mips.c, reg-mips64.o, reg-mips64.c): Delete.
2976 (mips-linux.o, mips-linux.c, mips64-linux.o, mips64-linux.c): New
2977 rules.
2978 * configure.srv: Specify XML files and new regformats for MIPS and
2979 MIPS64 GNU/Linux.
2980 * linux-mips-low.c (mips_num_regs): Set to only used registers.
2981 (mips_regmap): Do not fetch $0. Remove unused registers. Add
2982 an entry for the restart register.
2983 (mips_cannot_fetch_register, mips_cannot_store_register)
2984 (mips_reinsert_addr, mips_fill_fpregset, mips_store_fpregset): Update
2985 register names to match the XML descriptions.
2986 (mips_fill_gregset, mips_store_gregset): Likewise. Handle the
2987 restart register instead of $0.
2988
2989 2007-06-12 Ulrich Weigand <uweigand@de.ibm.com>
2990 Markus Deuling <deuling@de.ibm.com>
2991
2992 * remote-utils.c (decode_xfer_write): New function.
2993 * server.h (decode_xfer_write): Add prototype.
2994 * server.c (handle_query): Add PACKET_LEN argument. Support
2995 qXfer:spu:read and qXfer:spu:write packets.
2996 (main): Pass packet_len to handle_query.
2997 * spu-low.c (spu_target_ops): Add spu_proc_xfer_spu.
2998 * target.h (target_ops): Add qxfer_spu.
2999
3000 2007-06-12 Ulrich Weigand <uweigand@de.ibm.com>
3001
3002 * spu-low.c (spu_proc_xfer_spu): Do not return failure when
3003 accessing non-seekable spufs files.
3004
3005 2007-05-16 Markus Deuling <deuling@de.ibm.com>
3006
3007 * server.c (handle_query): Add reply for qC packet.
3008
3009 2007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
3010 Leo Zayas <lerele@champenstudios@com>
3011
3012 * server.h (check_remote_input_interrupt_request): New function.
3013 * remote_utils.c (INVALID_DESCRIPTOR): New define.
3014 (remote_desc): Initialize with INVALID_DESCRIPTOR.
3015 (input_interrupt): Expose on USE_WIN32API too. Fix whitespace.
3016 (check_remote_input_interrupt_request): New function.
3017 * server.h (check_remote_input_interrupt_request): Declare.
3018 * win32-low.c (winapi_DebugBreakProcess,
3019 winapi_GenerateConsoleCtrlEvent): New typedefs.
3020 (get_child_debug_event): Lower Win32 debug event polling from 1 sec
3021 to 250 ms.
3022 (win32_wait): Check for remote interrupt request
3023 with check_remote_input_interrupt_request.
3024 (win32_request_interrupt): New function.
3025 (win32_target_op): Set request_interrupt to win32_request_interrupt.
3026
3027 2007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
3028
3029 * win32-low.c (debug_registers_changed,
3030 debug_registers_used, CONTEXT_EXTENDED_REGISTERS,
3031 CONTEXT_FLOATING_POINT, CONTEXT_DEBUG_REGISTERS,
3032 CONTEXT_DEBUGGER, CONTEXT_DEBUGGER_DR): Delete.
3033 (thread_rec): Get context using the low target.
3034 (child_add_thread): Call thread_added on the low target,
3035 which does the same thing.
3036 (regptr): Delete.
3037 (do_initial_child_stuff): Remove debug registers references.
3038 Set context using the low target. Resume threads after
3039 setting the contexts.
3040 (child_continue): Remove dead variable. Remove debug
3041 registers references.
3042 (child_fetch_inferior_registers): Go through the low target.
3043 (do_child_store_inferior_registers): Remove.
3044 (child_store_inferior_registers): Go through the low target.
3045 (win32_resume): Remove debug registers references.
3046 Set context using the low target.
3047 (handle_exception): Change return type to void. Don't record
3048 context here. Set status to TARGET_WAITKIND_SPURIOUS on a
3049 first chance exception.
3050 (get_child_debug_event): Change return type to void. Remove
3051 goto loop. Always return after waiting for debug event.
3052 (win32_wait): Convert to switch statement. Handle spurious
3053 events.
3054
3055 * win32-i386-low.c (debug_registers_changed,
3056 debug_registers_used): New.
3057 (initial_stuff): Rename to ...
3058 (i386_initial_stuff): ... this. Clear debug registers
3059 state variables.
3060 (store_debug_registers): Delete.
3061 (i386_get_thread_context): New.
3062 (load_debug_registers): Delete.
3063 (i386_set_thread_context): New.
3064 (i386_thread_added): New.
3065 (single_step): Rename to ...
3066 (i386_single_step): ... this.
3067 (do_fetch_inferior_registers): Rename to ...
3068 (i386_fetch_inferior_register): ... this.
3069 (i386_store_inferior_register): New.
3070 (the_low_target): Adapt to new interface.
3071
3072 * win32-arm-low.c (CONTEXT_FLOATING_POINT): Define.
3073 (arm_get_thread_context): New.
3074 (arm_set_thread_context): New.
3075 (regptr): New.
3076 (do_fetch_inferior_registers): Rename to ...
3077 (arm_fetch_inferior_register): ... this.
3078 (arm_store_inferior_register): New.
3079 (arm_wince_breakpoint): Reimplement as unsigned long.
3080 (arm_wince_breakpoint_len): Define.
3081 (the_low_target): Adapt to new interface.
3082
3083 * win32-low.h (target_ops): Remove regmap, store_debug_registers and
3084 load_debug_registers. Add get_thread_context, set_thread_context,
3085 thread_added and store_inferior_register. Rename
3086 fetch_inferior_registers to fetch_inferior_register.
3087 (regptr): Remove declaration.
3088
3089 2007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
3090
3091 * linux-low.c (linux_detach): Change return type to int. Return 0.
3092 * spu-low.c (spu_detach): Likewise.
3093
3094 2007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
3095
3096 * target.h (target_ops): Change return type of detach to int.
3097 Add join.
3098 (join_inferior): New.
3099 * server.c (main): Don't skip detach support on mingw32.
3100 If the inferior doesn't support detaching return error.
3101 Call join_inferior instead of using waitpid.
3102 * linux-low.c (linux_join): New.
3103 (linux_target_op): Add linux_join.
3104 * spu-low.c (spu_join): New.
3105 (spu_target_ops): Add spu_join.
3106 * win32-low.c (win32_detach): Adapt to new interface.
3107 Reopen current_process_handle before detaching. Issue a child
3108 resume before detaching.
3109 (win32_join): New.
3110 (win32_target_op): Add win32_join.
3111
3112 2007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
3113
3114 * win32-low.c (win32-attach): Fix return value.
3115 * target.h (target_ops): Describe ATTACH return values.
3116
3117 2007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
3118
3119 * win32-low.c (GETPROCADDRESS): Define.
3120 (winapi_DebugActiveProcessStop): Add WINAPI. typedef as pointer.
3121 (winapi_DebugSetProcessKillOnExit): Likewise.
3122 (win32_create_inferior): Force usage of ansi CreateProcessA.
3123 (win32_attach): Use GETPROCADDRESS.
3124 (win32_detach): Likewise.
3125
3126 2007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
3127
3128 * win32-low.c (win32_wait): Don't use WSTOPSIG.
3129
3130 2007-03-30 Pedro Alves <pedro_alves@portugalmail.pt>
3131
3132 * win32-low.c: Commit leftover changes from 2007-03-29.
3133
3134 2007-03-30 Daniel Jacobowitz <dan@codesourcery.com>
3135
3136 * i387-fp.c (struct i387_fsave, struct i387_fxsave): Make 16-bit
3137 fields short instead of int. Add explicit padding.
3138 (i387_cache_to_fsave): Remove unnecessary casts.
3139 (i387_fsave_to_cache): Doc fix.
3140 (i387_cache_to_fxsave): Remove unnecessary casts and masking.
3141
3142 2007-03-30 Daniel Jacobowitz <dan@codesourcery.com>
3143
3144 * i387-fp.c (i387_cache_to_fxsave): Reinitialize val2 before use.
3145 (i387_fxsave_to_cache): Check fp->ftag while building ftag value.
3146
3147 2007-03-29 Pedro Alves <pedro_alves@portugalmail.pt>
3148
3149 * configure.srv (arm*-*-mingw32ce*): Move near the other
3150 arm targets.
3151
3152 2007-03-29 Pedro Alves <pedro_alves@portugalmail.pt>
3153
3154 * configure.ac: Add errno checking.
3155 (AC_CHECK_HEADERS): Add errno.h, fcntl.h, signal.h,
3156 sys/file.h and malloc.h.
3157 (AC_CHECK_DECLS): Add perror.
3158 (srv_mingwce): Handle.
3159 * configure.srv (i[34567]86-*-cygwin*): Add
3160 win32-i386-low.o to srv_tgtobj.
3161 (i[34567]86-*-mingw*): Likewise.
3162 (arm*-*-mingw32ce*): Add case.
3163 * gdbreplay.c [HAVE_SYS_FILE_H, HAVE_SIGNAL_H,
3164 HAVE_FCNTL_H, HAVE_ERRNO_H, HAVE_MALLOC_H]: Check.
3165 [__MINGW32CE__] (strerror): New function.
3166 [__MINGW32CE__] (errno): Define to GetLastError.
3167 [__MINGW32CE__] (COUNTOF): New macro.
3168 (remote_open): Remove extra close call.
3169 * mem-break.c (delete_breakpoint_at): New function.
3170 * mem-break.h (delete_breakpoint_at): Declare.
3171 * remote-utils.c [HAVE_SYS_FILE_H, HAVE_SIGNAL_H,
3172 HAVE_FCNTL_H, HAVE_UNISTD_H, HAVE_ERRNO_H]: Check.
3173 [USE_WIN32API] (read, write): Add char* casts.
3174 * server.c [HAVE_UNISTD_H, HAVE_SIGNAL_H]: Check.
3175 * server.h: Include wincecompat.h on Windows CE.
3176 [HAVE_ERRNO_H]: Check.
3177 (perror): Declare if not declared.
3178 * utils.c: Add stdlib.h, errno.h and malloc.h includes.
3179 (perror_with_name): Remove errno declaration.
3180 * wincecompat.h: New.
3181 * wincecompat.c: New.
3182 * win32-low.h: New.
3183 * win32-arm-low.c: New.
3184 * win32-i386-low.c: New.
3185 (win32-low.c): Include mem-break.h and win32-low.h, and winnt.h.
3186 (OUTMSG2): Make it safe.
3187 (_T): New macro.
3188 (COUNTOF): New macro.
3189 (NUM_REGS): Get it from the low target.
3190 (CONTEXT_EXTENDED_REGISTERS, CONTEXT_FLOATING_POINT,
3191 CONTEXT_DEBUG_REGISTERS): Add fallbacks to 0.
3192 (thread_rec): Let low target handle debug registers.
3193 (child_add_thread): Likewise.
3194 (child_init_thread_list): Likewise.
3195 (continue_one_thread): Likewise.
3196 (regptr): New.
3197 (do_child_fetch_inferior_registers): Move to ...
3198 * win32-i386-low.c: ... here, and rename to ...
3199 (do_fetch_inferior_registers): ... this.
3200 * win32-low.c (child_fetch_inferior_registers):
3201 Go through the low target.
3202 (do_child_store_inferior_registers): Use regptr.
3203 (strwinerror): New function.
3204 (win32_create_inferior): Handle Windows CE.
3205 Use strwinerror instead of strerror on Windows error
3206 codes. Add program to the error output.
3207 Don't close the main thread handle on Windows CE.
3208 (win32_attach): Use coredll.dll on Windows CE.
3209 (win32_kill): Close current process and current
3210 thread handles.
3211 (win32_detach): Use coredll.dll on Windows CE.
3212 (win32_resume): Let low target handle debug registers, and
3213 step request.
3214 (handle_exception): Add/Remove initial breakpoint. Avoid
3215 non-existant WSTOPSIG on Windows CE.
3216 (win32_read_inferior_memory): Cast to remove warning.
3217 (win32_arch_string): Go through the low target.
3218 (initialize_low): Call set_breakpoint_data with the low
3219 target's breakpoint.
3220 * win32-low.c (dr, FLAG_TRACE_BIT, FCS_REGNUM,
3221 FOP_REGNUM, mappings): Move to ...
3222 * win32-i386-low.c: ... here.
3223 * win32-low.c (win32_thread_info): Move to ...
3224 * win32-low.h: ... here.
3225 * Makefile.in (SFILES): Add win32-low.c, win32-i386-low.c,
3226 win32-arm-low.c and wincecompat.c.
3227 (all:): Add $EXEEXT.
3228 (install-only:): Likewise.
3229 (gdbserver:): Likewise.
3230 (gdbreplay:): Likewise.
3231 * config.in: Regenerate.
3232 * configure: Regenerate.
3233
3234 2007-03-28 Pedro Alves <pedro_alves@portugalmail.pt>
3235
3236 * win32-low.c: Rename typedef thread_info to
3237 win32_thread_info throughout.
3238
3239 2007-03-28 Pedro Alves <pedro_alves@portugalmail.pt>
3240
3241 * win32-i386-low.c: Rename to ...
3242 * win32-low.c: ... this.
3243 * configure.srv: Replace win32-i386-low.o with win32-low.o.
3244 * Makefile.in: Likewise.
3245
3246 2007-03-27 Pedro Alves <pedro_alves@portugalmail.pt>
3247
3248 * remote-utils.c (monitor_output): Constify msg parameter.
3249 * server.h (monitor_output): Likewise.
3250 * win32-i386-low.c (handle_output_debug_string): New.
3251 (win32_kill): Handle OUTPUT_DEBUG_STRING_EVENT events using
3252 handle_output_debug_string.
3253 (get_child_debug_event): Likewise.
3254
3255 2007-03-27 Mat Hostetter <mat@lcs.mit.edu>
3256
3257 * server.c (main): Correct strtoul check.
3258
3259 2007-03-27 Jon Ringle <jon@ringle.org>
3260
3261 * linux-low.c: Check __ARCH_HAS_MMU__ also.
3262
3263 2007-03-27 Brooks Moses <brooks.moses@codesourcery.com>
3264
3265 * Makefile.in: Add dummy "pdf" and "install-pdf" targets.
3266
3267 2007-02-27 Daniel Jacobowitz <dan@codesourcery.com>
3268
3269 * terminal.h: Check HAVE_SGTTY_H.
3270
3271 2007-02-27 Mat Hostetter <mat@lcs.mit.edu>
3272
3273 * remote-utils.c (remote_open): Print out the assigned port number.
3274
3275 2007-02-26 Daniel Jacobowitz <dan@codesourcery.com>
3276
3277 * remote-utils.c (monitor_output): New function.
3278 * server.c (debug_threads): Define here.
3279 (monitor_show_help): New function.
3280 (handle_query): Handle qRcmd.
3281 (main): Do not handle 'd' packet.
3282 * server.h (debug_threads, remote_debug, monitor_output): Declare.
3283 * linux-low.c, spu-low.c, win32-i386-low.c: Remove definitions
3284 of debug_threads.
3285
3286 2007-02-25 Pedro Alves <pedro_alves@portugalmail.pt>
3287
3288 * Makefile.in (EXEEXT): New.
3289 (clean): Use $(EXEEXT).
3290
3291 2007-02-25 Pedro Alves <pedro_alves@portugalmail.pt>
3292
3293 * target.h (target_ops): Rename send_signal to request_interrupt,
3294 and remove enum target_signal parameter.
3295 * linux-low.c (linux_request_interrupt): Rename from
3296 linux_send_signal, and always send SIGINT.
3297 * spu-low.c (spu_request_interrupt): Rename from spu_send_signal,
3298 and always send SIGINT.
3299 * remote-utils.c (putpkt_binary): Call request_interrupt, instead
3300 of send_signal.
3301 (input_interrupt): Likewise.
3302
3303 2007-02-25 Pedro Alves <pedro_alves@portugalmail.pt>
3304
3305 * server.c (get_features_xml): Check if target implemented
3306 arch_string.
3307 * win32-i386-low.c (win32_arch_string): New.
3308 (win32_target_ops): Add win32_arch_string as arch_string member.
3309
3310 2007-02-22 Markus Deuling <deuling@de.ibm.com>
3311
3312 * spu-low.c (spu_arch_string): New.
3313 (spu_target_ops): Add spu_arch_string.
3314
3315 2007-02-16 Daniel Jacobowitz <dan@codesourcery.com>
3316
3317 * remote-utils.c: Remove HAVE_TERMINAL_H check.
3318 * configure.ac: Do not check for terminal.h.
3319 * configure, config.in: Regenerated.
3320
3321 2007-02-08 Daniel Jacobowitz <dan@codesourcery.com>
3322
3323 * Makefile.in (OBS): Add $(XML_BUILTIN).
3324 (XML_DIR, XML_TARGET, XML_FILES, XML_BUILTIN): New.
3325 (clean): Update.
3326 (target.xml, xml-builtin.c, stamp-xml, arm-with-iwmmxt.o)
3327 (arm-with-iwmmxt.c): New.
3328 * config.in, configure: Regenerate.
3329 * configure.ac: Check for iWMMXt. Handle srv_xmltarget,
3330 srv_xmlbuiltin, and srv_xmlfiles. Define USE_XML.
3331 * configure.srv: Mention srv_xmltarget and srv_xmlfiles.
3332 (arm*-*-linux*): Add iWMMXt and regset support.
3333 * linux-arm-low.c (PTRACE_GETWMMXREGS, PTRACE_SETWMMXREGS): Define.
3334 (arm_fill_gregset, arm_store_gregset, arm_fill_wmmxregset)
3335 (arm_store_wmmxregset, target_regsets): New.
3336 * server.c (get_features_xml): Take annex argument. Check builtin
3337 XML documents.
3338 (handle_query): Handle multiple annexes.
3339
3340 2007-01-29 Daniel Jacobowitz <dan@codesourcery.com>
3341
3342 * remote-utils.c [USE_WIN32API] (read, write): Define.
3343 (putpkt_binary, input_interrupt, readchar, getpkt): Use read and
3344 write.
3345
3346 2007-01-09 Daniel Jacobowitz <dan@codesourcery.com>
3347
3348 * linux-i386-low.c (the_low_target): Set arch_string.
3349 * linux-x86-64-low.c (the_low_target): Likewise.
3350 * linux-low.c (linux_arch_string): New.
3351 (linux_target_ops): Add it.
3352 * linux-low.h (struct linux_target_ops): Add arch_string.
3353 * server.c (write_qxfer_response): Use const void * for DATA.
3354 (get_features_xml): New.
3355 (handle_query): Handle qXfer:features:read. Report it for qSupported.
3356 * target.h (struct target_ops): Add arch_string method.
3357
3358 2007-01-03 Denis Pilat <denis.pilat@st.com>
3359 Daniel Jacobowitz <dan@codesourcery.com>
3360
3361 * linux-low.c (linux_kill): Handle being called with no threads.
3362 * win32-i386-low.c (win32_kill): Likewise.
3363 (get_child_debug_event): Clear current_process_handle.
3364
3365 2006-12-30 Denis PILAT <denis.pilat@st.com>
3366 Daniel Jacobowitz <dan@codesourcery.com>
3367
3368 * remote-utils.c (remote_open): Check the type of specified
3369 serial port devices before opening them.
3370 * server.c (main): Kill the inferior if an error occurs during
3371 the first remote_open.
3372
3373 2006-12-05 Markus Deuling <deuling@de.ibm.com>
3374
3375 * README: Update supported targets.
3376
3377 2006-11-28 Daniel Jacobowitz <dan@codesourcery.com>
3378
3379 * Makefile.in (clean): Remove reg-mips64.c.
3380 (reg-mips64.c, reg-mips64.o): New rules.
3381 * configure.srv: Handle mips64. Include regset support for mips.
3382 * linux-mips-low.c (union mips_register): New.
3383 (mips_get_pc, mips_set_pc, mips_reinsert_addr): Use it.
3384 (mips_breakpoint, mips_breakpoint_at): Use int.
3385 (mips_collect_register, mips_supply_register)
3386 (mips_collect_register_32bit, mips_supply_register_32bit)
3387 (mips_fill_gregset, mips_store_gregset, mips_fill_fpregset)
3388 (mips_store_fpregset, target_regsets): New.
3389 * thread-db.c (thread_db_get_tls_address): Use uintptr_t.
3390
3391 2006-11-22 Ulrich Weigand <uweigand@de.ibm.com>
3392
3393 * configure.srv: Add target "spu*-*-*".
3394 * Makefile.in (clean): Remove reg-spu.c.
3395 (reg-spu.c, reg-spu.o, spu-low.o): Add dependencies.
3396 * spu-low.c: New file.
3397
3398 2006-11-16 Daniel Jacobowitz <dan@codesourcery.com>
3399
3400 * configure.ac: Correct td_thr_tls_get_addr test.
3401 * configure: Regenerated.
3402
3403 2006-11-16 Daniel Jacobowitz <dan@codesourcery.com>
3404
3405 * linux-low.c (linux_wait_for_event): Reformat. Use the
3406 pass_signals array.
3407 * remote-utils.c (decode_address_to_semicolon): New.
3408 * server.c (pass_signals, handle_general_set): New.
3409 (handle_query): Mention QPassSignals for qSupported.
3410 (main): Call handle_general_set.
3411 * server.h (pass_signals, decode_address_to_semicolon): New.
3412
3413 2006-11-06 Daniel Jacobowitz <dan@codesourcery.com>
3414
3415 * server.c (handle_query): Correct error handling for read_auxv.
3416
3417 2005-10-19 Ulrich Weigand <uweigand@de.ibm.com>
3418
3419 * configure.srv [s390-*-linux*, s390x-*-linux*]: Set srv_linux_regsets
3420 and srv_linux_thread_db to yes.
3421 * linux-s390-low.c (s390_fill_gregset): New function.
3422 (target_regsets): Define data structure.
3423
3424 2006-10-17 Daniel Jacobowitz <dan@codesourcery.com>
3425
3426 * acinclude.m4 (SRV_CHECK_TLS_GET_ADDR): New.
3427 * configure.ac: Use it. Define HAVE_TD_THR_TLS_GET_ADDR.
3428 * config.in, configure: Regenerated.
3429 * inferiors.c (gdb_id_to_thread): New function.
3430 (gdb_id_to_thread_id): Use it.
3431 * linux-low.c (linux_target_ops): Use thread_db_get_tls_address.
3432 * linux-low.h (struct process_info): Add th member.
3433 (thread_db_get_tls_address): New prototype.
3434 * remote-utils.c (decode_address): Make non-static.
3435 * server.c (handle_query): Handle qGetTLSAddr.
3436 * server.h (gdb_id_to_thread, decode_address): New prototypes.
3437 * target.h (struct target_ops): Add get_tls_address.
3438 * thread-db.c (maybe_attach_thread): Save the thread handle.
3439 (thread_db_get_tls_address): New.
3440
3441 2006-09-28 Daniel Jacobowitz <dan@codesourcery.com>
3442
3443 * linux-low.c (PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Define.
3444 (linux_resume_one_process): Take a siginfo_t *. Update all
3445 callers. Queue it if necessary. Use PTRACE_SETSIGINFO.
3446 (struct pending_signals): Add a siginfo_t.
3447 (linux_wait_for_process): Always set last_status.
3448 (linux_wait_for_event): Use PTRACE_GETSIGINFO.
3449 (linux_queue_one_thread): Use PTRACE_GETSIGINFO.
3450 * linux-low.h (struct process_info): Add last_status.
3451
3452 2006-09-21 Daniel Jacobowitz <dan@codesourcery.com>
3453
3454 * remote-utils.c (try_rle): New function.
3455 (putpkt_binary): Use it.
3456
3457 2006-08-19 Daniel Jacobowitz <dan@codesourcery.com>
3458
3459 * Makefile.in (clean): Clean reg-x86-64-linux.c.
3460 (reg-x86-64-linux.o, reg-x86-64-linux.c): New.
3461 * configure.srv (x86_64-*-linux*): Use reg-x86-64-linux.o.
3462 * linux-x86-64-low.c (x86_64_regmap): Include ORIG_RAX.
3463 (x86_64_fill_gregset, x86_64_store_gregset): Skip floating
3464 point registers.
3465
3466 2006-08-08 Richard Sandiford <richard@codesourcery.com>
3467
3468 * server.c (terminal_fd): New variable.
3469 (old_foreground_pgrp): Likewise.
3470 (restore_old_foreground_pgrp): New function.
3471 (start_inferior): Record the terminal file descriptor in terminal_fd
3472 and its original foreground group in old_foreground_pgrp. Register
3473 restore_old_foreground_pgrp with atexit().
3474
3475 2006-07-26 Daniel Jacobowitz <dan@codesourcery.com>
3476
3477 * server.c (handle_query): Correct qPart to qXfer.
3478
3479 2006-07-22 Daniel Jacobowitz <dan@codesourcery.com>
3480
3481 * configure.ac: Check for more headers which are missing on
3482 Windows. Automatically supply -lwsock32 and USE_WIN32API.
3483 * configure.srv: Add Cygwin and mingw32.
3484 * remote-utils.c: Don't include headers unconditionally which
3485 are missing on mingw32. Include <winsock.h> for mingw32.
3486 (remote_open): Adjust for mingw32 support. Flush
3487 standard error after writing to it.
3488 (remote_close, putpkt_binary, input_interrupt, block_async_io)
3489 (unblock_async_io, enable_async_io, disable_async_io)
3490 (readchar, getpkt): Update for Winsock support.
3491 (prepare_resume_reply): Expect a protocol signal number.
3492 * server.c: Disable <sys/wait.h> on mingw32.
3493 (start_inferior): Adjust for mingw32 support. Flush
3494 standard error after writing to it.
3495 (attach_inferior): Likewise. Use protocol signal
3496 numbers.
3497 (main): Skip 'D' packet on mingw32. Use protocol signal numbers
3498 and names.
3499 * win32-i386-low.c: New file.
3500 * Makefile.in (XM_CLIBS): Set.
3501 (gdbserver, gdbreplay): Use $(INTERNAL_CFLAGS).
3502 (win32-i386-low.o): New dependency rule.
3503 * linux-low.c (linux_wait): Use target signal numbers.
3504 * target.h (struct target_ops): Doc fix.
3505 * server.h (target_signal_to_name): New prototype.
3506 * gdbreplay.c: Don't include headers unconditionally which
3507 are missing on mingw32. Include <winsock.h> for mingw32.
3508 (remote_close, remote_open): Adjust for Winsock support.
3509 * configure, config.in: Regenerated.
3510
3511 2006-07-12 Daniel Jacobowitz <dan@codesourcery.com>
3512
3513 * server.c (decode_xfer_read, write_qxfer_response): New.
3514 (handle_query): Take a packet length argument. Handle
3515 qXfer:auxv:read instead of qPart:auxv:read. Mention it in
3516 the qSupported response.
3517 (main): Update call to handle_query.
3518
3519 2006-06-22 Daniel Jacobowitz <dan@codesourcery.com>
3520
3521 * remote-utils.c (remote_escape_output, remote_unescape_input): New.
3522 (putpkt_binary): Renamed from putpkt and adjusted for binary
3523 data.
3524 (putpkt): New wrapper for putpkt_binary.
3525 (readchar): Don't mask off the high bit.
3526 (decode_X_packet): New function.
3527 * server.c (main): Call putpkt_binary if a handler sets the packet
3528 length. Save the length of the incoming packet. Handle 'X'.
3529 * server.h (gdb_byte, remote_escape_output, decode_X_packet): New.
3530
3531 2006-06-21 Daniel Jacobowitz <dan@codesourcery.com>
3532
3533 * server.c (handle_query): Handle qSupported.
3534
3535 2006-05-30 Daniel Jacobowitz <dan@codesourcery.com>
3536
3537 * remote-utils.c (all_symbols_looked_up): New variable.
3538 (look_up_one_symbol): Check it.
3539 * server.h (look_up_one_symbol): New declaration.
3540 * thread-db.c (thread_db_init): Set all_symbols_looked_up.
3541
3542 2006-05-30 Daniel Jacobowitz <dan@codesourcery.com>
3543
3544 * Makefile.in (linux-arm-low.o): Update dependencies.
3545 * linux-arm-low.c: Include "gdb_proc_service.h".
3546 (PTRACE_GET_THREAD_AREA): Define.
3547 (ps_get_thread_area): New function.
3548
3549 2006-05-09 Nathan Sidwell <nathan@codesourcery.com>
3550
3551 * configure.srv (m68k*-*-uclinux*): New target.
3552 * linux-low.c (linux_create_inferior): Use vfork on mmuless systems.
3553 (linux_resume_one_process): Remove extraneous cast.
3554 (linux_read_offsets): New.
3555 (linux_target_op): Add linux_read_offsets on mmuless systems.
3556 * server.c (handle_query): Add qOffsets logic.
3557 * target.h (struct target_ops): Add read_offsets.
3558
3559 2006-03-15 Daniel Jacobowitz <dan@codesourcery.com>
3560
3561 * linux-mips-low.c: Include <sys/ptrace.h> and "gdb_proc_service.h".
3562 (PTRACE_GET_THREAD_AREA): Define.
3563 (ps_get_thread_area): New function.
3564 * Makefile.in (linux-i386-low.o, linux-mips-low.o)
3565 (linux-x86-64-low.o): Update.
3566
3567 2006-03-15 Daniel Jacobowitz <dan@codesourcery.com>
3568
3569 * configure.ac: Remove checks for prfpregset_t.
3570 * gdb_proc_service.h: New file.
3571 * linux-i386-low.c, linux-x86-64-low.c, thread-db.c: Use the
3572 new "gdb_proc_service.h".
3573 * proc-service.c: Likewise.
3574 (ps_pglobal_lookup, ps_pdread, ps_pdwrite): Use psaddr_t.
3575 (ps_lgetfpregs, ps_lsetfpregs): Use a void* argument.
3576 * Makefile.in (gdb_proc_service_h): Updated.
3577 * configure, config.in: Regenerated.
3578
3579 2006-03-03 Daniel Jacobowitz <dan@codesourcery.com>
3580
3581 * remote-utils.c (prepare_resume_reply): Move declaration
3582 of gdb_id_from_wait to the top of the block.
3583
3584 2006-02-15 Daniel Jacobowitz <dan@codesourcery.com>
3585
3586 * linux-low.c (regsets_store_inferior_registers): Read the regset
3587 from the target before filling it.
3588
3589 2006-02-08 Daniel Jacobowitz <dan@codesourcery.com>
3590
3591 * server.c (attach_inferior): Return SIGTRAP for a successful
3592 attach.
3593
3594 2006-02-01 Daniel Jacobowitz <dan@codesourcery.com>
3595
3596 * Makefile.in (OBS): Add version.o.
3597 (STAGESTUFF): Delete.
3598 (version.o): Add dependencies.
3599 (version.c): Replace rule.
3600 (clean): Remove version.c.
3601 * server.c (gdbserver_version): New.
3602 (gdbserver_usage): Use printf.
3603 (main): Handle --version and --help.
3604 * server.h (version, host_name): Add declarations.
3605
3606 2005-12-23 Eli Zaretskii <eliz@gnu.org>
3607
3608 * linux-arm-low.c:
3609 * linux-arm-low.c:
3610 * inferiors.c:
3611 * i387-fp.h:
3612 * i387-fp.c:
3613 * gdbreplay.c:
3614 * regcache.c:
3615 * proc-service.c:
3616 * mem-break.h:
3617 * mem-break.c:
3618 * linux-x86-64-low.c:
3619 * linux-sh-low.c:
3620 * linux-s390-low.c:
3621 * linux-ppc64-low.c:
3622 * linux-ppc-low.c:
3623 * linux-mips-low.c:
3624 * linux-m68k-low.c:
3625 * linux-m32r-low.c:
3626 * linux-low.h:
3627 * linux-low.c:
3628 * linux-ia64-low.c:
3629 * linux-i386-low.c:
3630 * linux-crisv32-low.c:
3631 * thread-db.c:
3632 * terminal.h:
3633 * target.h:
3634 * target.c:
3635 * server.h:
3636 * server.c:
3637 * remote-utils.c:
3638 * regcache.h:
3639 * utils.c:
3640 * Makefile.in:
3641 * configure.ac:
3642 * gdbserver.1: Add (C) after Copyright. Update the FSF
3643 address.
3644
3645 2005-11-13 Daniel Jacobowitz <dan@codesourcery.com>
3646
3647 * linux-arm-low.c (arm_eabi_breakpoint): New variable.
3648 (arm_breakpoint_at): Recognize both breakpoints.
3649 (the_low_target): Use the correct breakpoint instruction.
3650
3651 2005-11-02 Daniel Jacobowitz <dan@codesourcery.com>
3652
3653 * configure.srv (x86_64-*-linux*): Turn on thread_db support.
3654 * linux-x86-64-low.c (x86_64_breakpoint, x86_64_breakpoint_len)
3655 (x86_64_get_pc, x86_64_set_pc, x86_64_breakpoint_at): New.
3656 (the_low_target): Update.
3657
3658 2005-10-25 Andreas Schwab <schwab@suse.de>
3659
3660 * server.c (main): Allocate mem_buf with PBUFSIZ bytes.
3661
3662 * linux-ia64-low.c (ia64_regmap): Remove NAT registers.
3663 (ia64_num_regs): Reduce to 462.
3664
3665 2005-09-17 Daniel Jacobowitz <dan@codesourcery.com>
3666
3667 * acinclude.m4: Correct quoting.
3668 * aclocal.m4: Regenerated.
3669
3670 Suggested by SZOKOVACS Robert <szo@ies.hu>:
3671 * thread-db.c (thread_db_err_str): Handle TD_VERSION.
3672 (thread_db_init): Call thread_db_err_str.
3673 * configure.ac: Check for TD_VERSION.
3674 * config.in, configure: Regenerated.
3675
3676 2005-07-31 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3677
3678 * server.h (error, fatal, warning): Add ATTR_FORMAT.
3679
3680 2005-07-13 Daniel Jacobowitz <dan@codesourcery.com>
3681
3682 * configure.ac: Define HAVE_LINUX_REGSETS even if PTRACE_GETREGS
3683 is not available. Define HAVE_PTRACE_GETREGS if it is.
3684 * config.in, configure: Regenerated.
3685 * configure.srv: Set srv_linux_regsets for PowerPC and PowerPC64.
3686 * linux-i386-low.c, linux-m68k-low.c: Update to use
3687 HAVE_PTRACE_GETREGS.
3688 * linux-low.c (regsets_fetch_inferior_registers)
3689 (regsets_store_inferior_registers): Only return 0 if we processed
3690 GENERAL_REGS.
3691 * linux-ppc-low.c (ppc_fill_gregset, target_regsets): New.
3692 * linux-ppc64-low.c (ppc_fill_gregset, target_regsets): New.
3693
3694 2005-07-13 Daniel Jacobowitz <dan@codesourcery.com>
3695
3696 * inferiors.c (struct thread_info): Add gdb_id.
3697 (add_thread): Add gdb_id argument.
3698 (thread_id_to_gdb_id, thread_to_gdb_id, gdb_id_to_thread_id): New.
3699 * linux-low.c (linux_create_inferior, linux_attach_lwp): Update
3700 calls to add_thread.
3701 * remote-utils.c (prepare_resume_reply: Use thread_to_gdb_id.
3702 * server.c (handle_query): Use thread_to_gdb_id.
3703 (handle_v_cont, main): Use gdb_id_to_thread_id.
3704 * server.h (add_thread): Update prototype.
3705 (thread_id_to_gdb_id, thread_to_gdb_id, gdb_id_to_thread_id): New
3706 prototypes.
3707
3708 2005-07-13 Daniel Jacobowitz <dan@codesourcery.com>
3709
3710 * linux-low.c (fetch_register, usr_store_inferior_registers): Handle
3711 left-padded registers.
3712 * linux-low.h (struct linux_target_ops): Add left_pad_xfer.
3713 * linux-ppc64-low.c (the_low_target): Set left_pad_xfer.
3714
3715 2005-07-01 Steve Ellcey <sje@cup.hp.com>
3716
3717 * configure.ac (BFD_NEED_DECLARATION): Replace with AC_CHECK_DECLS.
3718 * configure: Regenerate.
3719 * config.in: Regenerate.
3720 * server.h (NEED_DECLARATION_STRERROR):
3721 Replace with !HAVE_DECL_STRERROR.
3722
3723 2005-06-16 Daniel Jacobowitz <dan@codesourcery.com>
3724
3725 * linux-low.c (linux_wait, linux_send_signal): Don't test
3726 an unsigned long variable for > 0 if it could be MAX_ULONG.
3727 * server.c (myresume): Likewise.
3728 * target.c (set_desired_inferior): Likewise.
3729
3730 2005-06-13 Mark Kettenis <kettenis@gnu.org>
3731
3732 * configure.ac: Simplify and improve check for socklen_t.
3733 * configure, config.in: Regenerate.
3734
3735 2005-06-12 Daniel Jacobowitz <dan@codesourcery.com>
3736
3737 * acconfig.h: Remove.
3738 * configure.ac: Add a test for socklen_t. Use three-argument
3739 AC_DEFINE throughout.
3740 * config.in: Regenerated using autoheader 2.59.
3741 * configure: Regenerated.
3742
3743 * gdbreplay.c (socklen_t): Provide a default.
3744 (remote_open): Use socklen_t.
3745 * remote-utils.c (socklen_t): Provide a default.
3746 (remote_open): Use socklen_t.
3747 (convert_int_to_ascii, convert_ascii_to_int, decode_M_packet): Use
3748 unsigned char.
3749
3750 * i387-fp.c (struct i387_fsave, struct i387_fxsave): Use unsigned
3751 char for buffers.
3752 * linux-low.c (linux_read_memory, linux_write_memory)
3753 (linux_read_auxv): Likewise.
3754 * mem-break.c (breakpoint_data, set_breakpoint_data, check_mem_read)
3755 (check_mem_write): Likewise.
3756 * mem-break.h (set_breakpoint_data, check_mem_read, check_mem_write):
3757 Likewise.
3758 * regcache.c (struct inferior_rgcache_data, registers_to_string)
3759 (registers_from_string, register_data): Likewise.
3760 * server.c (handle_query, main): Likewise.
3761 * server.h (convert_ascii_to_int, convert_int_to_ascii)
3762 (decode_M_packet): Likewise.
3763 * target.c (read_inferior_memory, write_inferior_memory): Likewise.
3764 * target.h (struct target_ops): Update read_memory, write_memory,
3765 and read_auxv.
3766 (read_inferior_memory, write_inferior_memory): Update.
3767 * linux-low.h (struct linux_target_ops): Change type of breakpoint
3768 to unsigned char *.
3769 * linux-arm-low.c, linux-cris-low.c, linux-crisv32-low.c,
3770 linux-i386-low.c, linux-m32r-low.c, linux-m68k-low.c,
3771 linux-mips-low.c, linux-ppc-low.c, linux-ppc64-low.c,
3772 linux-s390-low.c, linux-sh-low.c: Update for changes in
3773 read_inferior_memory and the_low_target->breakpoint.
3774
3775 2005-05-28 Daniel Jacobowitz <dan@codesourcery.com>
3776
3777 * Makefile.in (SFILES): Add linux-ppc64-low.c.
3778 (linux-ppc64-low.o, reg-ppc64.c, reg-ppc64.o): New targets.
3779 * configure.srv: Add powerpc64-*-linux*.
3780 * linux-ppc64-low.c: New file.
3781
3782 2005-05-23 Orjan Friberg <orjanf@axis.com>
3783
3784 * linux-cris-low.c: New file with support for CRIS.
3785 * linux-crisv32-low.c: Ditto for CRISv32.
3786 * Makefile.in (SFILES): Add linux-cris-low.c, linux-crisv32-low.c.
3787 (clean): Add reg-cris.c and reg-crisv32.c.
3788 Add linux-cris-low.o, linux-crisv32-low.o, reg-cris.o, reg-cris.c,
3789 reg-crisv32.o, and reg-crisv32.c to make rules.
3790 * configure.srv: Add cris-*-linux* and crisv32-*-linux* to list of
3791 recognized targets.
3792
3793 2005-05-16 Ulrich Weigand <uweigand@de.ibm.com>
3794
3795 * linux-low.c (fetch_register): Ensure buffer size is a multiple
3796 of sizeof (PTRACE_XFER_TYPE).
3797 (usr_store_inferior_registers): Likewise. Zero out excess bytes.
3798
3799 2005-05-12 Orjan Friberg <orjanf@axis.com>
3800
3801 * target.h (struct target_ops): Add insert_watchpoint,
3802 remove_watchpoint, stopped_by_watchpoint, stopped_data_address function
3803 pointers for hardware watchpoint support.
3804 * linux-low.h (struct linux_target_ops): Ditto.
3805 * linux-low.c (linux_insert_watchpoint, linux_remove_watchpoint)
3806 (linux_stopped_by_watchpoint, linux_stopped_data_address): New. Add
3807 to linux_target_ops.
3808 * remote-utils.c (prepare_resume_reply): Add watchpoint information to
3809 reply packet.
3810 * server.c (main): Recognize 'Z' and 'z' packets.
3811
3812 2005-05-10 Ulrich Weigand <uweigand@de.ibm.com>
3813
3814 * linux-s390-low.c (s390_breakpoint, s390_breakpoint_len): Define.
3815 (s390_get_pc, s390_set_pc, s390_breakpoint_at): New functions.
3816 (the_low_target): Add new members.
3817
3818 2005-05-04 Daniel Jacobowitz <dan@codesourcery.com>
3819
3820 * proc-service.c (ps_lgetregs): Search all_processes instead of
3821 all_threads.
3822
3823 2005-05-04 Daniel Jacobowitz <dan@codesourcery.com>
3824
3825 * server.c (start_inferior): Change return type to int.
3826 (attach_inferior): Change sigptr to int *.
3827 (handle_v_cont, handle_v_requests): Change signal to int *.
3828 (main): Change signal to int.
3829
3830 2005-04-15 Kei Sakamoto <sakamoto.kei@renesas.com>
3831
3832 * Makefile.in: Add linux-m32r-low.o, reg-m32r.c and reg-m32r.o.
3833 * configure.srv: Add m32r*-*-linux*.
3834 * linux-m32r-low.c: New file.
3835
3836 2005-03-04 Daniel Jacobowitz <dan@codesourcery.com>
3837
3838 * Makefile.in (stamp-h): Set CONFIG_HEADERS explicitly.
3839
3840 2005-03-03 Daniel Jacobowitz <dan@codesourcery.com>
3841
3842 * inferiors.c (change_inferior_id, add_thread, find_inferior_id):
3843 Take unsigned long arguments for PIDs.
3844 * linux-low.c (add_process, linux_attach_lwp, linux_attach)
3845 (linux_thread_alive, linux_wait_for_event, kill_lwp, send_sigstop)
3846 (wait_for_sigstop, linux_resume_one_process)
3847 (regsets_fetch_inferior_registers, linux_send_signal)
3848 (linux_read_auxv): Likewise. Update the types of variables holding
3849 PIDs. Update format string specifiers.
3850 * linux-low.h (struct process_info, linux_attach_lwp): Likewise.
3851 * remote-utils.c (prepare_resume_reply): Likewise.
3852 * server.c (cont_thread, general_thread, step_thread)
3853 (thread_from_wait, old_thread_from_wait, signal_pid): Change type to
3854 unsigned long.
3855 (handle_query): Update format specifiers.
3856 (handle_v_cont, main): Use strtoul for thread IDs.
3857 * server.h (struct inferior_list_entry): Use unsigned long for ID.
3858 (add_thread, find_inferior_id, change_inferior_id, cont_thread)
3859 (general_thread, step_thread, thread_from_wait)
3860 (old_thread_from_wait): Update.
3861 * target.h (struct thread_resume): Use unsigned long for THREAD.
3862 (struct target_ops): Use unsigned long for arguments to attach and
3863 thread_alive.
3864
3865 2005-02-24 Daniel Jacobowitz <dan@codesourcery.com>
3866
3867 * acinclude.m4: Include bfd/bfd.m4 directly.
3868 * configure.ac: Use AC_ARG_PROGRAM. Suggested by Aron Griffis
3869 <agriffis@toolchain.org>.
3870 * aclocal.m4, configure: Regenerated.
3871
3872 2005-01-07 Andrew Cagney <cagney@gnu.org>
3873
3874 * configure.ac: Rename configure.in, require autoconf 2.59.
3875 * configure: Re-generate.
3876
3877 2004-12-08 Daniel Jacobowitz <dan@debian.org>
3878
3879 * acinclude.m4 (SRV_CHECK_THREAD_DB): Add ps_get_thread_area. Reset
3880 LIBS when finished.
3881 * aclocal.m4: Regenerated.
3882 * configure: Regenerated.
3883
3884 2004-11-21 Andreas Schwab <schwab@suse.de>
3885
3886 * linux-m68k-low.c (m68k_num_gregs): Define.
3887 (m68k_fill_gregset, m68k_store_gregset, m68k_fill_fpregset)
3888 (m68k_store_fpregset, target_regsets) [HAVE_LINUX_REGSETS]: New.
3889 (m68k_breakpoint, m68k_breakpoint_len, m68k_get_pc, m68k_set_pc)
3890 (m68k_breakpoint_at): New. Add to the_low_target.
3891
3892 * configure.srv (m68*-*-linux*): Set srv_linux_regsets and
3893 srv_linux_thread_db to yes.
3894
3895 2004-10-20 Joel Brobecker <brobecker@gnat.com>
3896
3897 * linux-x86-64-low.c (ARCH_SET_GS): Add definition if missing.
3898 (ARCH_SET_FS): Likewise.
3899 (ARCH_GET_FS): Likewise.
3900 (ARCH_GET_GS): Likewise.
3901
3902 2004-10-16 Daniel Jacobowitz <dan@debian.org>
3903
3904 * linux-i386-low.c (ps_get_thread_area): New.
3905 * linux-x86-64-low.c (ps_get_thread_area): New.
3906 * linux-low.c: Include <sys/syscall.h>.
3907 (linux_kill_one_process): Don't kill the first thread here.
3908 (linux_kill): Kill the first thread here.
3909 (kill_lwp): New function.
3910 (send_sigstop, linux_send_signal): Use it.
3911 * proc-service.c: Clean up #ifdefs.
3912 (fpregset_info): Delete.
3913 (ps_lgetregs): Update and enable implementation.
3914 (ps_lsetregs, ps_lgetfpregs, ps_lsetfpregs): Remove disabled
3915 implementations.
3916 * remote-utils.c (struct sym_cache, symbol_cache): New.
3917 (input_interrupt): Print a clearer message.
3918 (async_io_enabled): New variable.
3919 (enable_async_io, disable_async_io): Use it. Update comments.
3920 (look_up_one_symbol): Use the symbol cache.
3921 * thread-db.c (thread_db_look_up_symbols): New function.
3922 (thread_db_init): Update comments. Call thread_db_look_up_symbols.
3923
3924 2004-10-16 Daniel Jacobowitz <dan@debian.org>
3925
3926 * configure.in: Test for -rdynamic.
3927 * configure: Regenerated.
3928 * Makefile (INTERNAL_LDFLAGS): New.
3929 (gdbserver, gdbreplay): Use it.
3930
3931 2004-09-02 Andrew Cagney <cagney@gnu.org>
3932
3933 * Makefile.in (TAGS): Replace TM_FILE with DEPRECATED_TM_FILE.
3934
3935 2004-03-23 Daniel Jacobowitz <drow@mvista.com>
3936
3937 * linux-low.c (linux_wait): Clear all_processes list also.
3938
3939 2004-03-12 Daniel Jacobowitz <drow@mvista.com>
3940
3941 * linux-low.c: Include <errno.h>. Remove extern declaration of
3942 errno.
3943
3944 2004-03-12 Daniel Jacobowitz <drow@mvista.com>
3945
3946 * gdbreplay.c, server.h, utils.c: Update copyright years.
3947
3948 2004-03-04 Nathan J. Williams <nathanw@wasabisystems.com>
3949
3950 * server.c (main): Print child status or termination signal from
3951 variable 'signal', not 'sig'.
3952
3953 2004-03-04 Nathan J. Williams <nathanw@wasabisystems.com>
3954
3955 * linux-low.c (linux_read_memory): Change return type to
3956 int. Check for and return error from ptrace().
3957 * target.c (read_inferior_memory): Change return type to int. Pass
3958 back return status from the_target->read_memory().
3959 * target.h (struct target_ops): Adapt *read_memory() prototype.
3960 Update comment.
3961 (read_inferior_memory): Adapt prototype.
3962 * server.c (main): Return an error packet if
3963 read_inferior_memory() returns an error.
3964
3965 2004-03-04 Daniel Jacobowitz <drow@mvista.com>
3966
3967 * Makefile.in (distclean): Remove config.h, stamp-h, and config.log.
3968 Unify with other clean targets.
3969
3970 2004-02-29 Daniel Jacobowitz <drow@mvista.com>
3971
3972 * server.c (handle_v_cont): Call set_desired_inferior.
3973
3974 2004-02-29 Daniel Jacobowitz <drow@mvista.com>
3975
3976 * remote-utils.c (prepare_resume_reply): Always supply "thread:".
3977
3978 2004-02-29 Daniel Jacobowitz <drow@mvista.com>
3979
3980 * linux-low.c (linux_wait): Unblock async I/O.
3981 (linux_resume): Block and enable async I/O.
3982 * remote-utils.c (block_async_io, unblock_async_io): New functions.
3983 * server.h (block_async_io, unblock_async_io): Add prototypes.
3984
3985 2004-02-29 Daniel Jacobowitz <drow@mvista.com>
3986
3987 * remote-utils.c (remote_open): Print a status notice after
3988 opening a TCP port.
3989 * server.c (attach_inferior): Print a status notice after
3990 attaching.
3991
3992 2004-02-29 Daniel Jacobowitz <drow@mvista.com>
3993
3994 * linux-arm-low.c (arm_get_pc): Print out stop PC in debug mode.
3995
3996 2004-02-26 Daniel Jacobowitz <drow@mvista.com>
3997
3998 * remote-utils.c (write_enn): Use "E01" instead of "ENN" for the
3999 error packet.
4000 * server.c, target.h: Update copyright years.
4001
4002 2004-02-25 Roland McGrath <roland@redhat.com>
4003
4004 * target.h (struct target_ops): New member `read_auxv'.
4005 * server.c (handle_query): Handle qPart:auxv:read: query using that.
4006 * linux-low.c (linux_read_auxv): New function.
4007 (linux_target_ops): Initialize `read_auxv' member to that.
4008
4009 2004-02-17 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
4010
4011 Committed by Jim Blandy <jimb@redhat.com>.
4012
4013 * linux-s390-low.c (s390_num_regs): Update.
4014 (s390_regmap): Remove control registers. Use __s390x__ predefine
4015 instead of GPR_SIZE to distiguish s390 and s390x targets.
4016
4017 2004-01-31 Daniel Jacobowitz <drow@mvista.com>
4018
4019 * linux-low.c: Update copyright year.
4020 (check_removed_breakpoint): Clear pending_is_breakpoint.
4021 (linux_set_resume_request, linux_queue_one_thread)
4022 (resume_status_pending_p): New functions.
4023 (linux_continue_one_thread): Use process->resume.
4024 (linux_resume): Only resume threads if there are no pending events.
4025 * linux-low.h (struct process_info): Add resume request
4026 pointer.
4027
4028 2004-01-30 Daniel Jacobowitz <drow@mvista.com>
4029
4030 * regcache.c (new_register_cache): Clear the allocated register
4031 buffer. Suggested by Atsushi Nemoto <anemo@mba.ocn.ne.jp>.
4032
4033 2003-10-13 Daniel Jacobowitz <drow@mvista.com>
4034
4035 * linux-low.c (linux_resume): Take a struct thread_resume *
4036 argument.
4037 (linux_wait): Update call.
4038 (resume_ptr): New static variable.
4039 (linux_continue_one_thread): Renamed from
4040 linux_continue_one_process. Use resume_ptr.
4041 (linux_resume): Use linux_continue_one_thread.
4042 * server.c (handle_v_cont, handle_v_requests): New functions.
4043 (myresume): New function.
4044 (main): Handle 'v' case.
4045 * target.h (struct thread_resume): New type.
4046 (struct target_ops): Change argument of "resume" to struct
4047 thread_resume *.
4048 (myresume): Delete macro.
4049
4050 2003-08-08 H.J. Lu <hongjiu.lu@intel.com>
4051
4052 * Makefile.in (install-only): Create dest dir. Support DESTDIR.
4053 (uninstall): Support DESTDIR.
4054
4055 Mon Jul 21 20:09:34 UTC 2003 Brendan Conoboy <blc@redhat.com>
4056
4057 * configure.srv: Add xscale*linux copy of arm*linux entry.
4058
4059 2003-07-24 Daniel Jacobowitz <drow@mvista.com>
4060
4061 * linux-arm-low.c (arm_reinsert_addr): New function.
4062 (the_low_target): Add arm_reinsert_addr.
4063
4064 2003-07-08 Mark Kettenis <kettenis@gnu.org>
4065
4066 * mem-break.c: Remove whitespace at end of file.
4067
4068 2003-06-28 Daniel Jacobowitz <drow@mvista.com>
4069
4070 * configure.in: Check whether we need to prototype strerror.
4071 * server.h: Optionally prototype strerror.
4072 * gdbreplay.c (perror_with_name): Use strerror.
4073 * linux-low.c (linux_attach_lwp): Use strerror.
4074 * utils.c (perror_with_name): Use strerror.
4075 * config.in, configure: Regenerated.
4076
4077 2003-06-28 Daniel Jacobowitz <drow@mvista.com>
4078
4079 * linux-sh-low.c (sh_regmap): Fix FP register offsets, reported by
4080 SUGIOKA Toshinobu <sugioka@itonet.co.jp>.
4081
4082 2003-06-20 Daniel Jacobowitz <drow@mvista.com>
4083
4084 * Makefile.in (SFILES): Update.
4085 * low-hppabsd.c, low-lynx.c, low-nbsd.c, low-sim.c, low-sparc.c,
4086 low-sun3.c: Remove files.
4087
4088 2003-06-17 Daniel Jacobowitz <drow@mvista.com>
4089
4090 * linux-low.c: Move comment to linux_thread_alive where it belonged.
4091 (linux_detach_one_process, linux_detach): New functions.
4092 (linux_target_ops): Add linux_detach.
4093 * server.c (main): Handle 'D' packet.
4094 * target.h (struct target_ops): Add "detach" member.
4095 (detach_inferior): Define.
4096
4097 2003-06-13 Mark Kettenis <kettenis@gnu.org>
4098
4099 From Kelley Cook <kelleycook@wideopenwest.com>:
4100 * configure.srv: Accept i[34567]86 variants.
4101
4102 2003-06-05 Daniel Jacobowitz <drow@mvista.com>
4103
4104 * linux-low.c (linux_wait_for_event): Correct comment typos.
4105 (linux_resume_one_process): Call check_removed_breakpoint.
4106 (linux_send_signal): New function.
4107 (linux_target_ops): Add linux_send_signal.
4108 * remote-utils.c (putpkt, input_interrupt): Use send_signal instead
4109 of kill.
4110 * target.h (struct target_ops): Add send_signal.
4111
4112 2003-05-29 Jim Blandy <jimb@redhat.com>
4113
4114 * linux-low.c (usr_store_inferior_registers): Transfer buf in
4115 PTRACE_XFER_TYPE-sized chunks, not int-sized chunks. Otherwise,
4116 if 'int' is smaller than PTRACE_XFER_TYPE, you end up throwing
4117 away part of the register's value.
4118
4119 2003-03-26 Daniel Jacobowitz <drow@mvista.com>
4120
4121 * linux-low.c (linux_create_inferior): Use __SIGRTMIN.
4122 (linux_wait_for_event, linux_init_signals): Likewise.
4123
4124 2003-03-17 Daniel Jacobowitz <drow@mvista.com>
4125
4126 * configure.in: Check for stdlib.h.
4127 * configure: Regenerated.
4128 * config.in: Regenerated.
4129
4130 2003-01-04 Andreas Schwab <schwab@suse.de>
4131
4132 * linux-m68k-low.c (m68k_num_regs): Define to 29 instead of 31.
4133
4134 2003-01-02 Andrew Cagney <ac131313@redhat.com>
4135
4136 * Makefile.in: Remove obsolete code.
4137
4138 2002-11-20 Daniel Jacobowitz <drow@mvista.com>
4139
4140 * linux-s390-low.c (s390_regmap): Check GPR_SIZE instead of
4141 defined(PT_FPR0_HI).
4142
4143 2002-11-17 Stuart Hughes <seh@zee2.com>
4144
4145 * linux-arm-low.c (arm_num_regs): Increase.
4146 (arm_regmap): Include status register.
4147
4148 2002-11-17 Daniel Jacobowitz <drow@mvista.com>
4149
4150 * linux-low.c (register_addr): Remove incorrect -1 check.
4151
4152 2002-08-29 Daniel Jacobowitz <drow@mvista.com>
4153
4154 * linux-low.c (linux_create_inferior): Call setpgid. Return
4155 the new PID.
4156 (unstopped_p, linux_signal_pid): Remove.
4157 (linux_target_ops): Remove linux_signal_pid.
4158 * remote-utils.c (putpkt, input_interrupt): Use signal_pid
4159 global instead of target method.
4160 * target.h (struct target_ops): Remove signal_pid. Update comment
4161 for create_inferior.
4162 * server.c (signal_pid): New variable.
4163 (create_inferior): Set signal_pid. Block SIGTTOU and SIGTTIN in
4164 gdbserver. Set the child to be the foreground process group.
4165 (attach_inferior): Set signal_pid.
4166
4167 2002-08-23 Daniel Jacobowitz <drow@mvista.com>
4168
4169 * ChangeLog: New file, with entries from gdb/ChangeLog after GDB 5.2.
4170
4171 2002-08-20 Jim Blandy <jimb@redhat.com>
4172
4173 * Makefile.in (LDFLAGS): Allow the configure script to establish a
4174 default for this.
4175
4176 2002-08-01 Andrew Cagney <cagney@redhat.com>
4177
4178 * Makefile.in: Make chill references obsolete.
4179
4180 2002-07-24 Kevin Buettner <kevinb@redhat.com>
4181
4182 * configure.in (unistd.h): Add to AC_CHECK_HEADERS list.
4183 * configure: Regenerate.
4184 * config.in: Regenerate.
4185
4186 2002-07-09 David O'Brien <obrien@FreeBSD.org>
4187
4188 * gdbreplay.c (stdlib.h, unistd.h): Conditionaly include.
4189 (perror_with_name, remote_close, remote_open, expect, play): Static.
4190
4191 2002-07-04 Michal Ludvig <mludvig@suse.cz>
4192
4193 * linux-x86-64-low.c (x86_64_regmap): Make it an array of
4194 byte offsets instead of an array of indexes.
4195 (x86_64_store_gregset, x86_64_store_fpregset): Parameter made const.
4196
4197 2002-06-13 Daniel Jacobowitz <drow@mvista.com>
4198
4199 * regcache.c: Add comment.
4200
4201 2002-06-11 Daniel Jacobowitz <drow@mvista.com>
4202
4203 * thread-db.c: New file.
4204 * proc-service.c: New file.
4205 * acinclude.m4: New file.
4206 * Makefile.in: Add GDBSERVER_LIBS, gdb_proc_service_h,
4207 proc-service.o, and thread-db.o.
4208 (linux-low.o): Add USE_THREAD_DB.
4209 * acconfig.h: Add HAVE_PRGREGSET_T, HAVE_PRFPREGSET_T,
4210 HAVE_LWPID_T, HAVE_PSADDR_T, and PRFPREGSET_T_BROKEN.
4211 * aclocal.m4: Regenerated.
4212 * config.in: Regenerated.
4213 * configure: Regenerated.
4214 * configure.in: Check for proc_service.h, sys/procfs.h,
4215 thread_db.h, and linux/elf.h headrs.
4216 Check for lwpid_t, psaddr_t, prgregset_t, prfpregset_t, and
4217 PRFPREGSET_T_BROKEN. Introduce srv_thread_depfiles and USE_THREAD_DB.
4218 Check for -lthread_db and thread support.
4219 * configure.srv: Enable thread_db support for ARM, i386, MIPS,
4220 PowerPC, and SuperH.
4221 * i387-fp.c: Constify arguments.
4222 * i387-fp.h: Likewise.
4223 * inferiors.c: (struct thread_info): Renamed from
4224 `struct inferior_info'. Remove PID member. Use generic inferior
4225 list header. All uses updated.
4226 (inferiors, signal_pid): Removed.
4227 (all_threads): New variable.
4228 (get_thread): Define.
4229 (add_inferior_to_list): New function.
4230 (for_each_inferior): New function.
4231 (change_inferior_id): New function.
4232 (add_inferior): Removed.
4233 (remove_inferior): New function.
4234 (add_thread): New function.
4235 (free_one_thread): New function.
4236 (remove_thread): New function.
4237 (clear_inferiors): Use for_each_inferior and free_one_thread.
4238 (find_inferior): New function.
4239 (find_inferior_id): New function.
4240 (inferior_target_data): Update argument type.
4241 (set_inferior_target_data): Likewise.
4242 (inferior_regcache_data): Likewise.
4243 (set_inferior_regcache_data): Likewise.
4244 * linux-low.c (linux_bp_reinsert): Remove.
4245 (all_processes, stopping_threads, using_thrads)
4246 (struct pending_signals, debug_threads, pid_of): New.
4247 (inferior_pid): Replace with macro.
4248 (struct inferior_linux_data): Remove.
4249 (get_stop_pc, add_process): New functions.
4250 (linux_create_inferior): Restore SIGRTMIN+1 before calling exec.
4251 Use add_process and add_thread.
4252 (linux_attach_lwp): New function, based on old linux_attach. Use
4253 add_process and add_thread. Set stop_expected for new threads.
4254 (linux_attach): New function.
4255 (linux_kill_one_process): New function.
4256 (linux_kill): Kill all LWPs.
4257 (linux_thread_alive): Use find_inferior_id.
4258 (check_removed_breakpoints, status_pending_p): New functions.
4259 (linux_wait_for_process): Renamed from linux_wait_for_one_inferior.
4260 Update. Use WNOHANG. Wait for cloned processes also. Update process
4261 struct for the found process.
4262 (linux_wait_for_event): New function.
4263 (linux_wait): Use it. Support LWPs.
4264 (send_sigstop, wait_for_sigstop, stop_all_processes)
4265 (linux_resume_one_process, linux_continue_one_process): New functions.
4266 (linux_resume): Support LWPs.
4267 (REGISTER_RAW_SIZE): Remove.
4268 (fetch_register): Use register_size instead. Call supply_register.
4269 (usr_store_inferior_registers): Likewise. Call collect_register.
4270 Fix recursive case.
4271 (regsets_fetch_inferior_registers): Improve error message.
4272 (regsets_store_inferior_registers): Add debugging.
4273 (linux_look_up_symbols): Call thread_db_init if USE_THREAD_DB.
4274 (unstopped_p, linux_signal_pid): New functions.
4275 (linux_target_ops): Add linux_signal_pid.
4276 (linux_init_signals): New function.
4277 (initialize_low): Call it. Initialize using_threads.
4278 * regcache.c (inferior_regcache_data): Add valid
4279 flag.
4280 (get_regcache): Fetch registers lazily. Add fetch argument
4281 and update all callers.
4282 (regcache_invalidate_one, regcache_invalidate): New
4283 functions.
4284 (new_register_cache): Renamed from create_register_cache.
4285 Return the new regcache.
4286 (free_register_cache): Change argument to a void *.
4287 (registers_to_string, registers_from_string): Call get_regcache
4288 with fetch flag set.
4289 (register_data): Make static. Pass fetch flag to get_regcache.
4290 (supply_register): Call get_regcache with fetch flag clear.
4291 (collect_register): Call get_regcache with fetch flag set.
4292 (collect_register_as_string): New function.
4293 * regcache.h: Update.
4294 * remote-utils.c (putpkt): Flush after debug output and use
4295 stderr.
4296 Handle input interrupts while waiting for an ACK.
4297 (input_interrupt): Use signal_pid method.
4298 (getpkt): Flush after debug output and use stderr.
4299 (outreg): Use collect_register_as_string.
4300 (new_thread_notify, dead_thread_notify): New functions.
4301 (prepare_resume_reply): Check using_threads. Set thread_from_wait
4302 and general_thread.
4303 (look_up_one_symbol): Flush after debug output.
4304 * server.c (step_thread, server_waiting): New variables.
4305 (start_inferior): Don't use signal_pid. Update call to mywait.
4306 (attach_inferior): Update call to mywait.
4307 (handle_query): Handle qfThreadInfo and qsThreadInfo.
4308 (main): Don't fetch/store registers explicitly. Use
4309 set_desired_inferior. Support proposed ``Hs'' packet. Update
4310 calls to mywait.
4311 * server.h: Update.
4312 (struct inferior_list, struct_inferior_list_entry): New.
4313 * target.c (set_desired_inferior): New.
4314 (write_inferior_memory): Constify.
4315 (mywait): New function.
4316 * target.h: Update.
4317 (struct target_ops): New signal_pid method.
4318 (mywait): Removed macro, added prototype.
4319
4320 * linux-low.h (regset_func): Removed.
4321 (regset_fill_func, regset_store_func): New.
4322 (enum regset_type): New.
4323 (struct regset_info): Add type field. Use new operation types.
4324 (struct linux_target_ops): stop_pc renamed to get_pc.
4325 Add decr_pc_after_break and breakpoint_at.
4326 (get_process, get_thread_proess, get_process_thread)
4327 (strut process_info, all_processes, linux_attach_lwp)
4328 (thread_db_init): New.
4329
4330 * linux-arm-low.c (arm_get_pc, arm_set_pc,
4331 arm_breakpoint, arm_breakpoint_len, arm_breakpoint_at): New.
4332 (the_low_target): Add new members.
4333 * linux-i386-low.c (i386_store_gregset, i386_store_fpregset)
4334 (i386_store_fpxregset): Constify.
4335 (target_regsets): Add new kind identifier.
4336 (i386_get_pc): Renamed from i386_stop_pc. Simplify.
4337 (i386_set_pc): Add debugging.
4338 (i386_breakpoint_at): New function.
4339 (the_low_target): Add new members.
4340 * linux-mips-low.c (mips_get_pc, mips_set_pc)
4341 (mips_breakpoint, mips_breakpoint_len, mips_reinsert_addr)
4342 (mips_breakpoint_at): New.
4343 (the_low_target): Add new members.
4344 * linux-ppc-low.c (ppc_get_pc, ppc_set_pc)
4345 (ppc_breakpoint, ppc_breakpoint_len, ppc_breakpoint_at): New.
4346 (the_low_target): Add new members.
4347 * linux-sh-low.c (sh_get_pc, sh_set_pc)
4348 (sh_breakpoint, sh_breakpoint_len, sh_breakpoint_at): New.
4349 (the_low_target): Add new members.
4350 * linux-x86-64-low.c (target_regsets): Add new kind
4351 identifier.
4352
4353 2002-05-15 Daniel Jacobowitz <drow@mvista.com>
4354
4355 From Martin Pool <mbp@samba.org>:
4356 * server.c (gdbserver_usage): New function.
4357 (main): Call it.
4358
4359 2002-05-14 Daniel Jacobowitz <drow@mvista.com>
4360
4361 * mem-break.c (reinsert_breakpoint_by_bp): Correct typo
4362 stop_at -> stop_pc.
4363
4364 2002-05-04 Andrew Cagney <ac131313@redhat.com>
4365
4366 * Makefile.in: Remove obsolete code.
4367
4368 2002-04-24 Michal Ludvig <mludvig@suse.cz>
4369
4370 * linux-low.c (regsets_fetch_inferior_registers),
4371 (regsets_store_inferior_registers): Removed cast to int from
4372 ptrace() calls.
4373 * regcache.h: Added declaration of struct inferior_info.
4374
4375 2002-04-20 Daniel Jacobowitz <drow@mvista.com>
4376
4377 * inferiors.c (struct inferior_info): Add regcache_data.
4378 (add_inferior): Call create_register_cache.
4379 (clear_inferiors): Call free_register_cache.
4380 (inferior_regcache_data, set_inferior_regcache_data): New functions.
4381 * regcache.c (struct inferior_regcache_data): New.
4382 (registers): Remove.
4383 (get_regcache): New function.
4384 (create_register_cache, free_register_cache): New functions.
4385 (set_register_cache): Don't initialize the register cache here.
4386 (registers_to_string, registers_from_string, register_data): Call
4387 get_regcache.
4388 * regcache.h: Add prototypes.
4389 * server.h: Likewise.
4390
4391 2002-04-20 Daniel Jacobowitz <drow@mvista.com>
4392
4393 * mem-break.c: New file.
4394 * mem-break.h: New file.
4395 * Makefile.in: Add mem-break.o rule; update server.h
4396 dependencies.
4397 * inferiors.c (struct inferior_info): Add target_data
4398 member.
4399 (clear_inferiors): Free target_data member if set.
4400 (inferior_target_data, set_inferior_target_data): New functions.
4401 * linux-i386-low.c (i386_breakpoint, i386_breakpoint_len)
4402 (i386_stop_pc, i386_set_pc): New. Add to the_low_target.
4403 * linux-low.c (linux_bp_reinsert): New variable.
4404 (struct inferior_linux_data): New.
4405 (linux_create_inferior): Use set_inferior_target_data.
4406 (linux_attach): Likewise. Call add_inferior.
4407 (linux_wait_for_one_inferior): New function.
4408 (linux_wait): Call it.
4409 (linux_write_memory): Add const.
4410 (initialize_low): Call set_breakpoint_data.
4411 * linux-low.h (struct linux_target_ops): Add breakpoint
4412 handling members.
4413 * server.c (attach_inferior): Remove extra add_inferior
4414 call.
4415 * server.h: Include mem-break.h. Update inferior.c
4416 prototypes.
4417 * target.c (read_inferior_memory)
4418 (write_inferior_memory): New functions.
4419 * target.h (read_inferior_memory)
4420 (write_inferior_memory): Change macros to prototypes.
4421 (struct target_ops): Update comments. Add const to write_memory
4422 definition.
4423
4424 2002-04-11 Daniel Jacobowitz <drow@mvista.com>
4425
4426 * linux-low.c (usr_store_inferior_registers): Support
4427 registers which are allowed to fail to store.
4428 * linux-low.h (linux_target_ops): Likewise.
4429 * linux-ppc-low.c (ppc_regmap): Support FPSCR.
4430 (ppc_cannot_store_register): FPSCR may not be storable.
4431
4432 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
4433
4434 * server.h: Include <string.h> if HAVE_STRING_H.
4435 * ChangeLog: Correct paths in last ChangeLog entry.
4436
4437 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
4438
4439 * linux-low.h: Remove obsolete prototypes.
4440 (struct linux_target_ops): New.
4441 (extern the_low_target): New.
4442 * linux-low.c (num_regs, regmap): Remove declarations.
4443 (register_addr): Use the_low_target explicitly.
4444 (fetch_register): Likewise.
4445 (usr_fetch_inferior_registers): Likewise.
4446 (usr_store_inferior_registers): Likewise.
4447 * linux-arm-low.c (num_regs): Remove.
4448 (arm_num_regs): Define.
4449 (arm_regmap): Renamed from regmap, made static.
4450 (arm_cannot_fetch_register): Renamed from cannot_fetch_register,
4451 made static.
4452 (arm_cannot_store_register): Renamed from cannot_store_register,
4453 made static.
4454 (the_low_target): New.
4455 * linux-i386-low.c (num_regs): Remove.
4456 (i386_num_regs): Define.
4457 (i386_regmap): Renamed from regmap, made static.
4458 (i386_cannot_fetch_register): Renamed from cannot_fetch_register,
4459 made static.
4460 (i386_cannot_store_register): Renamed from cannot_store_register,
4461 made static.
4462 (the_low_target): New.
4463 * linux-ia64-low.c (num_regs): Remove.
4464 (ia64_num_regs): Define.
4465 (ia64_regmap): Renamed from regmap, made static.
4466 (ia64_cannot_fetch_register): Renamed from cannot_fetch_register,
4467 made static.
4468 (ia64_cannot_store_register): Renamed from cannot_store_register,
4469 made static.
4470 (the_low_target): New.
4471 * linux-m68k-low.c (num_regs): Remove.
4472 (m68k_num_regs): Define.
4473 (m68k_regmap): Renamed from regmap, made static.
4474 (m68k_cannot_fetch_register): Renamed from cannot_fetch_register,
4475 made static.
4476 (m68k_cannot_store_register): Renamed from cannot_store_register,
4477 made static.
4478 (the_low_target): New.
4479 * linux-mips-low.c (num_regs): Remove.
4480 (mips_num_regs): Define.
4481 (mips_regmap): Renamed from regmap, made static.
4482 (mips_cannot_fetch_register): Renamed from cannot_fetch_register,
4483 made static.
4484 (mips_cannot_store_register): Renamed from cannot_store_register,
4485 made static.
4486 (the_low_target): New.
4487 * linux-ppc-low.c (num_regs): Remove.
4488 (ppc_num_regs): Define.
4489 (ppc_regmap): Renamed from regmap, made static.
4490 (ppc_cannot_fetch_register): Renamed from cannot_fetch_register,
4491 made static.
4492 (ppc_cannot_store_register): Renamed from cannot_store_register,
4493 made static.
4494 (the_low_target): New.
4495 * linux-s390-low.c (num_regs): Remove.
4496 (s390_num_regs): Define.
4497 (s390_regmap): Renamed from regmap, made static.
4498 (s390_cannot_fetch_register): Renamed from cannot_fetch_register,
4499 made static.
4500 (s390_cannot_store_register): Renamed from cannot_store_register,
4501 made static.
4502 (the_low_target): New.
4503 * linux-sh-low.c (num_regs): Remove.
4504 (sh_num_regs): Define.
4505 (sh_regmap): Renamed from regmap, made static.
4506 (sh_cannot_fetch_register): Renamed from cannot_fetch_register,
4507 made static.
4508 (sh_cannot_store_register): Renamed from cannot_store_register,
4509 made static.
4510 (the_low_target): New.
4511 * linux-x86-64-low.c (x86_64_regmap): Renamed from regmap.
4512 (the_low_target): New.
4513
4514 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
4515
4516 * Makefile.in: Add stamp-h target.
4517 * configure.in: Create stamp-h.
4518 * configure: Regenerated.
4519
4520 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
4521
4522 * inferiors.c: New file.
4523 * target.c: New file.
4524 * target.h: New file.
4525 * Makefile.in: Add target.o and inferiors.o. Update
4526 dependencies.
4527 * linux-low.c (inferior_pid): New static variable,
4528 moved from server.c.
4529 (linux_create_inferior): Renamed from create_inferior.
4530 Call add_inferior. Return 0 on success instead of a PID.
4531 (linux_attach): Renamed from myattach.
4532 (linux_kill): Renamed from kill_inferior. Call clear_inferiors ().
4533 (linux_thread_alive): Renamed from mythread_alive.
4534 (linux_wait): Renamed from mywait. Call clear_inferiors () if the
4535 child dies.
4536 (linux_resume): Renamed from myresume. Add missing ``return 0''.
4537 (regsets_store_inferior_registers): Correct error message.
4538 Add missing ``return 0''.
4539 (linux_fetch_registers): Renamed from fetch_inferior_registers.
4540 (linux_store_registers): Renamed from store_inferior_registers.
4541 (linux_read_memory): Renamed from read_inferior_memory.
4542 (linux_write_memory): Renamed from write_inferior_memory.
4543 (linux_target_ops): New structure.
4544 (initialize_low): Call set_target_ops ().
4545 * remote-utils.c (unhexify): New function.
4546 (hexify): New function.
4547 (input_interrupt): Send signals to ``signal_pid''.
4548 * server.c (inferior_pid): Remove.
4549 (start_inferior): Update create_inferior call.
4550 (attach_inferior): Call add_inferior.
4551 (handle_query): New function.
4552 (main): Call handle_query for `q' packets.
4553 * server.h: Include "target.h". Remove obsolete prototypes.
4554 Add prototypes for "inferiors.c", "target.c", hexify, and unhexify.
4555
4556 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
4557
4558 * Makefile.in: Add WARN_CFLAGS. Update configury
4559 dependencies.
4560 * configure.in: Check for <string.h>
4561 * configure: Regenerate.
4562 * config.in: Regenerate.
4563 * gdbreplay.c: Include needed system headers.
4564 (remote_open): Remove strchr prototype.
4565 * linux-low.h: Correct #ifdef to HAVE_LINUX_USRREGS.
4566 * regcache.c (supply_register): Change buf argument to const void *.
4567 (supply_register_by_name): Likewise.
4568 (collect_register): Change buf argument to void *.
4569 (collect_register_by_name): Likewise.
4570 * regcache.h: Add missing prototypes.
4571 * remote-utils.c: Include <arpa/inet.h> for inet_ntoa.
4572 * server.c (handle_query): New function.
4573 (attached): New static variable, moved out of main.
4574 (main): Quiet longjmp clobber warnings.
4575 * server.h: Add ATTR_NORETURN and ATTR_FORMAT. Update prototypes.
4576 * utils.c (error): Remove NORETURN.
4577 (fatal): Likewise.
This page took 0.12806 seconds and 4 git commands to generate.