1 /* Target operations for the remote server for GDB.
2 Copyright (C) 2002, 2004, 2005
3 Free Software Foundation, Inc.
5 Contributed by MontaVista Software.
7 This file is part of GDB.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin Street, Fifth Floor,
22 Boston, MA 02110-1301, USA. */
26 struct target_ops
*the_target
;
29 set_desired_inferior (int use_general
)
31 struct thread_info
*found
;
35 found
= (struct thread_info
*) find_inferior_id (&all_threads
,
42 /* If we are continuing any (all) thread(s), use step_thread
43 to decide which thread to step and/or send the specified
45 if ((step_thread
!= 0 && step_thread
!= -1)
46 && (cont_thread
== 0 || cont_thread
== -1))
47 found
= (struct thread_info
*) find_inferior_id (&all_threads
,
51 found
= (struct thread_info
*) find_inferior_id (&all_threads
,
56 current_inferior
= (struct thread_info
*) all_threads
.head
;
58 current_inferior
= found
;
62 read_inferior_memory (CORE_ADDR memaddr
, unsigned char *myaddr
, int len
)
65 res
= (*the_target
->read_memory
) (memaddr
, myaddr
, len
);
66 check_mem_read (memaddr
, myaddr
, len
);
71 write_inferior_memory (CORE_ADDR memaddr
, const unsigned char *myaddr
,
74 /* Lacking cleanups, there is some potential for a memory leak if the
75 write fails and we go through error(). Make sure that no more than
76 one buffer is ever pending by making BUFFER static. */
77 static unsigned char *buffer
= 0;
83 buffer
= malloc (len
);
84 memcpy (buffer
, myaddr
, len
);
85 check_mem_write (memaddr
, buffer
, len
);
86 res
= (*the_target
->write_memory
) (memaddr
, buffer
, len
);
94 mywait (char *statusp
, int connected_wait
)
101 ret
= (*the_target
->wait
) (statusp
);
110 set_target_ops (struct target_ops
*target
)
112 the_target
= (struct target_ops
*) malloc (sizeof (*the_target
));
113 memcpy (the_target
, target
, sizeof (*the_target
));