diff options
Diffstat (limited to 'gdbserver/linux-sh-low.cc')
-rw-r--r-- | gdbserver/linux-sh-low.cc | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gdbserver/linux-sh-low.cc b/gdbserver/linux-sh-low.cc index f55402c..ab82ee3 100644 --- a/gdbserver/linux-sh-low.cc +++ b/gdbserver/linux-sh-low.cc @@ -19,6 +19,18 @@ #include "server.h" #include "linux-low.h" +/* Linux target op definitions for the SH architecture. */ + +class sh_target : public linux_process_target +{ +public: + +}; + +/* The singleton target ops object. */ + +static sh_target the_sh_target; + /* Defined in auto-generated file reg-sh.c. */ void init_registers_sh (void); extern const struct target_desc *tdesc_sh; @@ -180,6 +192,10 @@ struct linux_target_ops the_low_target = { sh_supports_hardware_single_step, }; +/* The linux target ops object. */ + +linux_process_target *the_linux_target = &the_sh_target; + void initialize_low_arch (void) { |