* spu-low.c (spu_arch_string): New.

(spu_target_ops): Add spu_arch_string.
This commit is contained in:
Ulrich Weigand 2007-02-22 17:41:37 +00:00
parent 6a5bb8757e
commit ab39bf2466
2 changed files with 18 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2007-02-22 Markus Deuling <deuling@de.ibm.com>
* spu-low.c (spu_arch_string): New.
(spu_target_ops): Add spu_arch_string.
2007-02-16 Daniel Jacobowitz <dan@codesourcery.com>
* remote-utils.c: Remove HAVE_TERMINAL_H check.

View File

@ -556,6 +556,12 @@ spu_send_signal (int signo)
syscall (SYS_tkill, current_tid, signo);
}
static const char *
spu_arch_string (void)
{
return "spu";
}
static struct target_ops spu_target_ops = {
spu_create_inferior,
@ -572,6 +578,13 @@ static struct target_ops spu_target_ops = {
spu_look_up_symbols,
spu_send_signal,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
spu_arch_string,
};
void