mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-05 21:50:21 +08:00
* spu-low.c (spu_arch_string): New.
(spu_target_ops): Add spu_arch_string.
This commit is contained in:
@ -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.
|
||||
|
@ -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
|
||||
|
Reference in New Issue
Block a user