convert to_supports_multi_process
[deliverable/binutils-gdb.git] / gdb / target-delegates.c
1 /* THIS FILE IS GENERATED -*- buffer-read-only: t -*- */
2 /* vi:set ro: */
3
4 /* To regenerate this file, run:*/
5 /* make-target-delegates target.h > target-delegates.c */
6 static void
7 delegate_attach (struct target_ops *self, char *arg1, int arg2)
8 {
9 self = self->beneath;
10 self->to_attach (self, arg1, arg2);
11 }
12
13 static void
14 delegate_post_attach (struct target_ops *self, int arg1)
15 {
16 self = self->beneath;
17 self->to_post_attach (self, arg1);
18 }
19
20 static void
21 tdefault_post_attach (struct target_ops *self, int arg1)
22 {
23 }
24
25 static void
26 delegate_detach (struct target_ops *self, const char *arg1, int arg2)
27 {
28 self = self->beneath;
29 self->to_detach (self, arg1, arg2);
30 }
31
32 static void
33 tdefault_detach (struct target_ops *self, const char *arg1, int arg2)
34 {
35 }
36
37 static void
38 delegate_resume (struct target_ops *self, ptid_t arg1, int arg2, enum gdb_signal arg3)
39 {
40 self = self->beneath;
41 self->to_resume (self, arg1, arg2, arg3);
42 }
43
44 static void
45 tdefault_resume (struct target_ops *self, ptid_t arg1, int arg2, enum gdb_signal arg3)
46 {
47 noprocess ();
48 }
49
50 static ptid_t
51 delegate_wait (struct target_ops *self, ptid_t arg1, struct target_waitstatus *arg2, int arg3)
52 {
53 self = self->beneath;
54 return self->to_wait (self, arg1, arg2, arg3);
55 }
56
57 static ptid_t
58 tdefault_wait (struct target_ops *self, ptid_t arg1, struct target_waitstatus *arg2, int arg3)
59 {
60 noprocess ();
61 }
62
63 static void
64 delegate_store_registers (struct target_ops *self, struct regcache *arg1, int arg2)
65 {
66 self = self->beneath;
67 self->to_store_registers (self, arg1, arg2);
68 }
69
70 static void
71 tdefault_store_registers (struct target_ops *self, struct regcache *arg1, int arg2)
72 {
73 noprocess ();
74 }
75
76 static void
77 delegate_prepare_to_store (struct target_ops *self, struct regcache *arg1)
78 {
79 self = self->beneath;
80 self->to_prepare_to_store (self, arg1);
81 }
82
83 static void
84 tdefault_prepare_to_store (struct target_ops *self, struct regcache *arg1)
85 {
86 noprocess ();
87 }
88
89 static void
90 delegate_files_info (struct target_ops *self)
91 {
92 self = self->beneath;
93 self->to_files_info (self);
94 }
95
96 static void
97 tdefault_files_info (struct target_ops *self)
98 {
99 }
100
101 static int
102 delegate_insert_breakpoint (struct target_ops *self, struct gdbarch *arg1, struct bp_target_info *arg2)
103 {
104 self = self->beneath;
105 return self->to_insert_breakpoint (self, arg1, arg2);
106 }
107
108 static int
109 delegate_remove_breakpoint (struct target_ops *self, struct gdbarch *arg1, struct bp_target_info *arg2)
110 {
111 self = self->beneath;
112 return self->to_remove_breakpoint (self, arg1, arg2);
113 }
114
115 static int
116 delegate_can_use_hw_breakpoint (struct target_ops *self, int arg1, int arg2, int arg3)
117 {
118 self = self->beneath;
119 return self->to_can_use_hw_breakpoint (self, arg1, arg2, arg3);
120 }
121
122 static int
123 tdefault_can_use_hw_breakpoint (struct target_ops *self, int arg1, int arg2, int arg3)
124 {
125 return 0;
126 }
127
128 static int
129 delegate_insert_hw_breakpoint (struct target_ops *self, struct gdbarch *arg1, struct bp_target_info *arg2)
130 {
131 self = self->beneath;
132 return self->to_insert_hw_breakpoint (self, arg1, arg2);
133 }
134
135 static int
136 tdefault_insert_hw_breakpoint (struct target_ops *self, struct gdbarch *arg1, struct bp_target_info *arg2)
137 {
138 return -1;
139 }
140
141 static int
142 delegate_remove_hw_breakpoint (struct target_ops *self, struct gdbarch *arg1, struct bp_target_info *arg2)
143 {
144 self = self->beneath;
145 return self->to_remove_hw_breakpoint (self, arg1, arg2);
146 }
147
148 static int
149 tdefault_remove_hw_breakpoint (struct target_ops *self, struct gdbarch *arg1, struct bp_target_info *arg2)
150 {
151 return -1;
152 }
153
154 static int
155 delegate_remove_watchpoint (struct target_ops *self, CORE_ADDR arg1, int arg2, int arg3, struct expression *arg4)
156 {
157 self = self->beneath;
158 return self->to_remove_watchpoint (self, arg1, arg2, arg3, arg4);
159 }
160
161 static int
162 tdefault_remove_watchpoint (struct target_ops *self, CORE_ADDR arg1, int arg2, int arg3, struct expression *arg4)
163 {
164 return -1;
165 }
166
167 static int
168 delegate_insert_watchpoint (struct target_ops *self, CORE_ADDR arg1, int arg2, int arg3, struct expression *arg4)
169 {
170 self = self->beneath;
171 return self->to_insert_watchpoint (self, arg1, arg2, arg3, arg4);
172 }
173
174 static int
175 tdefault_insert_watchpoint (struct target_ops *self, CORE_ADDR arg1, int arg2, int arg3, struct expression *arg4)
176 {
177 return -1;
178 }
179
180 static int
181 delegate_stopped_by_watchpoint (struct target_ops *self)
182 {
183 self = self->beneath;
184 return self->to_stopped_by_watchpoint (self);
185 }
186
187 static int
188 tdefault_stopped_by_watchpoint (struct target_ops *self)
189 {
190 return 0;
191 }
192
193 static int
194 delegate_stopped_data_address (struct target_ops *self, CORE_ADDR *arg1)
195 {
196 self = self->beneath;
197 return self->to_stopped_data_address (self, arg1);
198 }
199
200 static int
201 tdefault_stopped_data_address (struct target_ops *self, CORE_ADDR *arg1)
202 {
203 return 0;
204 }
205
206 static int
207 delegate_watchpoint_addr_within_range (struct target_ops *self, CORE_ADDR arg1, CORE_ADDR arg2, int arg3)
208 {
209 self = self->beneath;
210 return self->to_watchpoint_addr_within_range (self, arg1, arg2, arg3);
211 }
212
213 static int
214 delegate_region_ok_for_hw_watchpoint (struct target_ops *self, CORE_ADDR arg1, int arg2)
215 {
216 self = self->beneath;
217 return self->to_region_ok_for_hw_watchpoint (self, arg1, arg2);
218 }
219
220 static int
221 delegate_can_accel_watchpoint_condition (struct target_ops *self, CORE_ADDR arg1, int arg2, int arg3, struct expression *arg4)
222 {
223 self = self->beneath;
224 return self->to_can_accel_watchpoint_condition (self, arg1, arg2, arg3, arg4);
225 }
226
227 static int
228 tdefault_can_accel_watchpoint_condition (struct target_ops *self, CORE_ADDR arg1, int arg2, int arg3, struct expression *arg4)
229 {
230 return 0;
231 }
232
233 static void
234 delegate_terminal_init (struct target_ops *self)
235 {
236 self = self->beneath;
237 self->to_terminal_init (self);
238 }
239
240 static void
241 tdefault_terminal_init (struct target_ops *self)
242 {
243 }
244
245 static void
246 delegate_terminal_inferior (struct target_ops *self)
247 {
248 self = self->beneath;
249 self->to_terminal_inferior (self);
250 }
251
252 static void
253 tdefault_terminal_inferior (struct target_ops *self)
254 {
255 }
256
257 static void
258 delegate_terminal_ours_for_output (struct target_ops *self)
259 {
260 self = self->beneath;
261 self->to_terminal_ours_for_output (self);
262 }
263
264 static void
265 tdefault_terminal_ours_for_output (struct target_ops *self)
266 {
267 }
268
269 static void
270 delegate_terminal_ours (struct target_ops *self)
271 {
272 self = self->beneath;
273 self->to_terminal_ours (self);
274 }
275
276 static void
277 tdefault_terminal_ours (struct target_ops *self)
278 {
279 }
280
281 static void
282 delegate_terminal_save_ours (struct target_ops *self)
283 {
284 self = self->beneath;
285 self->to_terminal_save_ours (self);
286 }
287
288 static void
289 tdefault_terminal_save_ours (struct target_ops *self)
290 {
291 }
292
293 static void
294 delegate_terminal_info (struct target_ops *self, const char *arg1, int arg2)
295 {
296 self = self->beneath;
297 self->to_terminal_info (self, arg1, arg2);
298 }
299
300 static void
301 delegate_load (struct target_ops *self, char *arg1, int arg2)
302 {
303 self = self->beneath;
304 self->to_load (self, arg1, arg2);
305 }
306
307 static void
308 tdefault_load (struct target_ops *self, char *arg1, int arg2)
309 {
310 tcomplain ();
311 }
312
313 static void
314 delegate_post_startup_inferior (struct target_ops *self, ptid_t arg1)
315 {
316 self = self->beneath;
317 self->to_post_startup_inferior (self, arg1);
318 }
319
320 static void
321 tdefault_post_startup_inferior (struct target_ops *self, ptid_t arg1)
322 {
323 }
324
325 static int
326 delegate_insert_fork_catchpoint (struct target_ops *self, int arg1)
327 {
328 self = self->beneath;
329 return self->to_insert_fork_catchpoint (self, arg1);
330 }
331
332 static int
333 tdefault_insert_fork_catchpoint (struct target_ops *self, int arg1)
334 {
335 return 1;
336 }
337
338 static int
339 delegate_remove_fork_catchpoint (struct target_ops *self, int arg1)
340 {
341 self = self->beneath;
342 return self->to_remove_fork_catchpoint (self, arg1);
343 }
344
345 static int
346 tdefault_remove_fork_catchpoint (struct target_ops *self, int arg1)
347 {
348 return 1;
349 }
350
351 static int
352 delegate_insert_vfork_catchpoint (struct target_ops *self, int arg1)
353 {
354 self = self->beneath;
355 return self->to_insert_vfork_catchpoint (self, arg1);
356 }
357
358 static int
359 tdefault_insert_vfork_catchpoint (struct target_ops *self, int arg1)
360 {
361 return 1;
362 }
363
364 static int
365 delegate_remove_vfork_catchpoint (struct target_ops *self, int arg1)
366 {
367 self = self->beneath;
368 return self->to_remove_vfork_catchpoint (self, arg1);
369 }
370
371 static int
372 tdefault_remove_vfork_catchpoint (struct target_ops *self, int arg1)
373 {
374 return 1;
375 }
376
377 static int
378 delegate_insert_exec_catchpoint (struct target_ops *self, int arg1)
379 {
380 self = self->beneath;
381 return self->to_insert_exec_catchpoint (self, arg1);
382 }
383
384 static int
385 tdefault_insert_exec_catchpoint (struct target_ops *self, int arg1)
386 {
387 return 1;
388 }
389
390 static int
391 delegate_remove_exec_catchpoint (struct target_ops *self, int arg1)
392 {
393 self = self->beneath;
394 return self->to_remove_exec_catchpoint (self, arg1);
395 }
396
397 static int
398 tdefault_remove_exec_catchpoint (struct target_ops *self, int arg1)
399 {
400 return 1;
401 }
402
403 static int
404 delegate_set_syscall_catchpoint (struct target_ops *self, int arg1, int arg2, int arg3, int arg4, int *arg5)
405 {
406 self = self->beneath;
407 return self->to_set_syscall_catchpoint (self, arg1, arg2, arg3, arg4, arg5);
408 }
409
410 static int
411 tdefault_set_syscall_catchpoint (struct target_ops *self, int arg1, int arg2, int arg3, int arg4, int *arg5)
412 {
413 return 1;
414 }
415
416 static int
417 delegate_has_exited (struct target_ops *self, int arg1, int arg2, int *arg3)
418 {
419 self = self->beneath;
420 return self->to_has_exited (self, arg1, arg2, arg3);
421 }
422
423 static int
424 tdefault_has_exited (struct target_ops *self, int arg1, int arg2, int *arg3)
425 {
426 return 0;
427 }
428
429 static char *
430 delegate_extra_thread_info (struct target_ops *self, struct thread_info *arg1)
431 {
432 self = self->beneath;
433 return self->to_extra_thread_info (self, arg1);
434 }
435
436 static char *
437 tdefault_extra_thread_info (struct target_ops *self, struct thread_info *arg1)
438 {
439 return 0;
440 }
441
442 static char *
443 delegate_thread_name (struct target_ops *self, struct thread_info *arg1)
444 {
445 self = self->beneath;
446 return self->to_thread_name (self, arg1);
447 }
448
449 static char *
450 tdefault_thread_name (struct target_ops *self, struct thread_info *arg1)
451 {
452 return 0;
453 }
454
455 static void
456 delegate_rcmd (struct target_ops *self, char *arg1, struct ui_file *arg2)
457 {
458 self = self->beneath;
459 self->to_rcmd (self, arg1, arg2);
460 }
461
462 static char *
463 delegate_pid_to_exec_file (struct target_ops *self, int arg1)
464 {
465 self = self->beneath;
466 return self->to_pid_to_exec_file (self, arg1);
467 }
468
469 static char *
470 tdefault_pid_to_exec_file (struct target_ops *self, int arg1)
471 {
472 return 0;
473 }
474
475 static void
476 delegate_log_command (struct target_ops *self, const char *arg1)
477 {
478 self = self->beneath;
479 self->to_log_command (self, arg1);
480 }
481
482 static void
483 tdefault_log_command (struct target_ops *self, const char *arg1)
484 {
485 }
486
487 static int
488 delegate_can_async_p (struct target_ops *self)
489 {
490 self = self->beneath;
491 return self->to_can_async_p (self);
492 }
493
494 static int
495 delegate_is_async_p (struct target_ops *self)
496 {
497 self = self->beneath;
498 return self->to_is_async_p (self);
499 }
500
501 static void
502 delegate_async (struct target_ops *self, async_callback_ftype *arg1, void *arg2)
503 {
504 self = self->beneath;
505 self->to_async (self, arg1, arg2);
506 }
507
508 static void
509 tdefault_async (struct target_ops *self, async_callback_ftype *arg1, void *arg2)
510 {
511 tcomplain ();
512 }
513
514 static int
515 delegate_find_memory_regions (struct target_ops *self, find_memory_region_ftype arg1, void *arg2)
516 {
517 self = self->beneath;
518 return self->to_find_memory_regions (self, arg1, arg2);
519 }
520
521 static char *
522 delegate_make_corefile_notes (struct target_ops *self, bfd *arg1, int *arg2)
523 {
524 self = self->beneath;
525 return self->to_make_corefile_notes (self, arg1, arg2);
526 }
527
528 static gdb_byte *
529 delegate_get_bookmark (struct target_ops *self, char *arg1, int arg2)
530 {
531 self = self->beneath;
532 return self->to_get_bookmark (self, arg1, arg2);
533 }
534
535 static gdb_byte *
536 tdefault_get_bookmark (struct target_ops *self, char *arg1, int arg2)
537 {
538 tcomplain ();
539 }
540
541 static void
542 delegate_goto_bookmark (struct target_ops *self, gdb_byte *arg1, int arg2)
543 {
544 self = self->beneath;
545 self->to_goto_bookmark (self, arg1, arg2);
546 }
547
548 static void
549 tdefault_goto_bookmark (struct target_ops *self, gdb_byte *arg1, int arg2)
550 {
551 tcomplain ();
552 }
553
554 static enum target_xfer_status
555 delegate_xfer_partial (struct target_ops *self, enum target_object arg1, const char *arg2, gdb_byte *arg3, const gdb_byte *arg4, ULONGEST arg5, ULONGEST arg6, ULONGEST *arg7)
556 {
557 self = self->beneath;
558 return self->to_xfer_partial (self, arg1, arg2, arg3, arg4, arg5, arg6, arg7);
559 }
560
561 static enum target_xfer_status
562 tdefault_xfer_partial (struct target_ops *self, enum target_object arg1, const char *arg2, gdb_byte *arg3, const gdb_byte *arg4, ULONGEST arg5, ULONGEST arg6, ULONGEST *arg7)
563 {
564 return TARGET_XFER_E_IO;
565 }
566
567 static ptid_t
568 delegate_get_ada_task_ptid (struct target_ops *self, long arg1, long arg2)
569 {
570 self = self->beneath;
571 return self->to_get_ada_task_ptid (self, arg1, arg2);
572 }
573
574 static int
575 delegate_can_execute_reverse (struct target_ops *self)
576 {
577 self = self->beneath;
578 return self->to_can_execute_reverse (self);
579 }
580
581 static int
582 tdefault_can_execute_reverse (struct target_ops *self)
583 {
584 return 0;
585 }
586
587 static enum exec_direction_kind
588 delegate_execution_direction (struct target_ops *self)
589 {
590 self = self->beneath;
591 return self->to_execution_direction (self);
592 }
593
594 static int
595 delegate_supports_multi_process (struct target_ops *self)
596 {
597 self = self->beneath;
598 return self->to_supports_multi_process (self);
599 }
600
601 static int
602 tdefault_supports_multi_process (struct target_ops *self)
603 {
604 return 0;
605 }
606
607 static struct gdbarch *
608 delegate_thread_architecture (struct target_ops *self, ptid_t arg1)
609 {
610 self = self->beneath;
611 return self->to_thread_architecture (self, arg1);
612 }
613
614 static int
615 delegate_supports_btrace (struct target_ops *self)
616 {
617 self = self->beneath;
618 return self->to_supports_btrace (self);
619 }
620
621 static int
622 tdefault_supports_btrace (struct target_ops *self)
623 {
624 return 0;
625 }
626
627 static void
628 install_delegators (struct target_ops *ops)
629 {
630 if (ops->to_attach == NULL)
631 ops->to_attach = delegate_attach;
632 if (ops->to_post_attach == NULL)
633 ops->to_post_attach = delegate_post_attach;
634 if (ops->to_detach == NULL)
635 ops->to_detach = delegate_detach;
636 if (ops->to_resume == NULL)
637 ops->to_resume = delegate_resume;
638 if (ops->to_wait == NULL)
639 ops->to_wait = delegate_wait;
640 if (ops->to_store_registers == NULL)
641 ops->to_store_registers = delegate_store_registers;
642 if (ops->to_prepare_to_store == NULL)
643 ops->to_prepare_to_store = delegate_prepare_to_store;
644 if (ops->to_files_info == NULL)
645 ops->to_files_info = delegate_files_info;
646 if (ops->to_insert_breakpoint == NULL)
647 ops->to_insert_breakpoint = delegate_insert_breakpoint;
648 if (ops->to_remove_breakpoint == NULL)
649 ops->to_remove_breakpoint = delegate_remove_breakpoint;
650 if (ops->to_can_use_hw_breakpoint == NULL)
651 ops->to_can_use_hw_breakpoint = delegate_can_use_hw_breakpoint;
652 if (ops->to_insert_hw_breakpoint == NULL)
653 ops->to_insert_hw_breakpoint = delegate_insert_hw_breakpoint;
654 if (ops->to_remove_hw_breakpoint == NULL)
655 ops->to_remove_hw_breakpoint = delegate_remove_hw_breakpoint;
656 if (ops->to_remove_watchpoint == NULL)
657 ops->to_remove_watchpoint = delegate_remove_watchpoint;
658 if (ops->to_insert_watchpoint == NULL)
659 ops->to_insert_watchpoint = delegate_insert_watchpoint;
660 if (ops->to_stopped_by_watchpoint == NULL)
661 ops->to_stopped_by_watchpoint = delegate_stopped_by_watchpoint;
662 if (ops->to_stopped_data_address == NULL)
663 ops->to_stopped_data_address = delegate_stopped_data_address;
664 if (ops->to_watchpoint_addr_within_range == NULL)
665 ops->to_watchpoint_addr_within_range = delegate_watchpoint_addr_within_range;
666 if (ops->to_region_ok_for_hw_watchpoint == NULL)
667 ops->to_region_ok_for_hw_watchpoint = delegate_region_ok_for_hw_watchpoint;
668 if (ops->to_can_accel_watchpoint_condition == NULL)
669 ops->to_can_accel_watchpoint_condition = delegate_can_accel_watchpoint_condition;
670 if (ops->to_terminal_init == NULL)
671 ops->to_terminal_init = delegate_terminal_init;
672 if (ops->to_terminal_inferior == NULL)
673 ops->to_terminal_inferior = delegate_terminal_inferior;
674 if (ops->to_terminal_ours_for_output == NULL)
675 ops->to_terminal_ours_for_output = delegate_terminal_ours_for_output;
676 if (ops->to_terminal_ours == NULL)
677 ops->to_terminal_ours = delegate_terminal_ours;
678 if (ops->to_terminal_save_ours == NULL)
679 ops->to_terminal_save_ours = delegate_terminal_save_ours;
680 if (ops->to_terminal_info == NULL)
681 ops->to_terminal_info = delegate_terminal_info;
682 if (ops->to_load == NULL)
683 ops->to_load = delegate_load;
684 if (ops->to_post_startup_inferior == NULL)
685 ops->to_post_startup_inferior = delegate_post_startup_inferior;
686 if (ops->to_insert_fork_catchpoint == NULL)
687 ops->to_insert_fork_catchpoint = delegate_insert_fork_catchpoint;
688 if (ops->to_remove_fork_catchpoint == NULL)
689 ops->to_remove_fork_catchpoint = delegate_remove_fork_catchpoint;
690 if (ops->to_insert_vfork_catchpoint == NULL)
691 ops->to_insert_vfork_catchpoint = delegate_insert_vfork_catchpoint;
692 if (ops->to_remove_vfork_catchpoint == NULL)
693 ops->to_remove_vfork_catchpoint = delegate_remove_vfork_catchpoint;
694 if (ops->to_insert_exec_catchpoint == NULL)
695 ops->to_insert_exec_catchpoint = delegate_insert_exec_catchpoint;
696 if (ops->to_remove_exec_catchpoint == NULL)
697 ops->to_remove_exec_catchpoint = delegate_remove_exec_catchpoint;
698 if (ops->to_set_syscall_catchpoint == NULL)
699 ops->to_set_syscall_catchpoint = delegate_set_syscall_catchpoint;
700 if (ops->to_has_exited == NULL)
701 ops->to_has_exited = delegate_has_exited;
702 if (ops->to_extra_thread_info == NULL)
703 ops->to_extra_thread_info = delegate_extra_thread_info;
704 if (ops->to_thread_name == NULL)
705 ops->to_thread_name = delegate_thread_name;
706 if (ops->to_rcmd == NULL)
707 ops->to_rcmd = delegate_rcmd;
708 if (ops->to_pid_to_exec_file == NULL)
709 ops->to_pid_to_exec_file = delegate_pid_to_exec_file;
710 if (ops->to_log_command == NULL)
711 ops->to_log_command = delegate_log_command;
712 if (ops->to_can_async_p == NULL)
713 ops->to_can_async_p = delegate_can_async_p;
714 if (ops->to_is_async_p == NULL)
715 ops->to_is_async_p = delegate_is_async_p;
716 if (ops->to_async == NULL)
717 ops->to_async = delegate_async;
718 if (ops->to_find_memory_regions == NULL)
719 ops->to_find_memory_regions = delegate_find_memory_regions;
720 if (ops->to_make_corefile_notes == NULL)
721 ops->to_make_corefile_notes = delegate_make_corefile_notes;
722 if (ops->to_get_bookmark == NULL)
723 ops->to_get_bookmark = delegate_get_bookmark;
724 if (ops->to_goto_bookmark == NULL)
725 ops->to_goto_bookmark = delegate_goto_bookmark;
726 if (ops->to_xfer_partial == NULL)
727 ops->to_xfer_partial = delegate_xfer_partial;
728 if (ops->to_get_ada_task_ptid == NULL)
729 ops->to_get_ada_task_ptid = delegate_get_ada_task_ptid;
730 if (ops->to_can_execute_reverse == NULL)
731 ops->to_can_execute_reverse = delegate_can_execute_reverse;
732 if (ops->to_execution_direction == NULL)
733 ops->to_execution_direction = delegate_execution_direction;
734 if (ops->to_supports_multi_process == NULL)
735 ops->to_supports_multi_process = delegate_supports_multi_process;
736 if (ops->to_thread_architecture == NULL)
737 ops->to_thread_architecture = delegate_thread_architecture;
738 if (ops->to_supports_btrace == NULL)
739 ops->to_supports_btrace = delegate_supports_btrace;
740 }
741
742 static void
743 install_dummy_methods (struct target_ops *ops)
744 {
745 ops->to_attach = find_default_attach;
746 ops->to_post_attach = tdefault_post_attach;
747 ops->to_detach = tdefault_detach;
748 ops->to_resume = tdefault_resume;
749 ops->to_wait = tdefault_wait;
750 ops->to_store_registers = tdefault_store_registers;
751 ops->to_prepare_to_store = tdefault_prepare_to_store;
752 ops->to_files_info = tdefault_files_info;
753 ops->to_insert_breakpoint = memory_insert_breakpoint;
754 ops->to_remove_breakpoint = memory_remove_breakpoint;
755 ops->to_can_use_hw_breakpoint = tdefault_can_use_hw_breakpoint;
756 ops->to_insert_hw_breakpoint = tdefault_insert_hw_breakpoint;
757 ops->to_remove_hw_breakpoint = tdefault_remove_hw_breakpoint;
758 ops->to_remove_watchpoint = tdefault_remove_watchpoint;
759 ops->to_insert_watchpoint = tdefault_insert_watchpoint;
760 ops->to_stopped_by_watchpoint = tdefault_stopped_by_watchpoint;
761 ops->to_stopped_data_address = tdefault_stopped_data_address;
762 ops->to_watchpoint_addr_within_range = default_watchpoint_addr_within_range;
763 ops->to_region_ok_for_hw_watchpoint = default_region_ok_for_hw_watchpoint;
764 ops->to_can_accel_watchpoint_condition = tdefault_can_accel_watchpoint_condition;
765 ops->to_terminal_init = tdefault_terminal_init;
766 ops->to_terminal_inferior = tdefault_terminal_inferior;
767 ops->to_terminal_ours_for_output = tdefault_terminal_ours_for_output;
768 ops->to_terminal_ours = tdefault_terminal_ours;
769 ops->to_terminal_save_ours = tdefault_terminal_save_ours;
770 ops->to_terminal_info = default_terminal_info;
771 ops->to_load = tdefault_load;
772 ops->to_post_startup_inferior = tdefault_post_startup_inferior;
773 ops->to_insert_fork_catchpoint = tdefault_insert_fork_catchpoint;
774 ops->to_remove_fork_catchpoint = tdefault_remove_fork_catchpoint;
775 ops->to_insert_vfork_catchpoint = tdefault_insert_vfork_catchpoint;
776 ops->to_remove_vfork_catchpoint = tdefault_remove_vfork_catchpoint;
777 ops->to_insert_exec_catchpoint = tdefault_insert_exec_catchpoint;
778 ops->to_remove_exec_catchpoint = tdefault_remove_exec_catchpoint;
779 ops->to_set_syscall_catchpoint = tdefault_set_syscall_catchpoint;
780 ops->to_has_exited = tdefault_has_exited;
781 ops->to_extra_thread_info = tdefault_extra_thread_info;
782 ops->to_thread_name = tdefault_thread_name;
783 ops->to_rcmd = default_rcmd;
784 ops->to_pid_to_exec_file = tdefault_pid_to_exec_file;
785 ops->to_log_command = tdefault_log_command;
786 ops->to_can_async_p = find_default_can_async_p;
787 ops->to_is_async_p = find_default_is_async_p;
788 ops->to_async = tdefault_async;
789 ops->to_find_memory_regions = dummy_find_memory_regions;
790 ops->to_make_corefile_notes = dummy_make_corefile_notes;
791 ops->to_get_bookmark = tdefault_get_bookmark;
792 ops->to_goto_bookmark = tdefault_goto_bookmark;
793 ops->to_xfer_partial = tdefault_xfer_partial;
794 ops->to_get_ada_task_ptid = default_get_ada_task_ptid;
795 ops->to_can_execute_reverse = tdefault_can_execute_reverse;
796 ops->to_execution_direction = default_execution_direction;
797 ops->to_supports_multi_process = tdefault_supports_multi_process;
798 ops->to_thread_architecture = default_thread_architecture;
799 ops->to_supports_btrace = tdefault_supports_btrace;
800 }
This page took 0.045963 seconds and 5 git commands to generate.