diff options
Diffstat (limited to 'gdbserver/linux-mips-low.cc')
-rw-r--r-- | gdbserver/linux-mips-low.cc | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gdbserver/linux-mips-low.cc b/gdbserver/linux-mips-low.cc index 3caab02..debe115 100644 --- a/gdbserver/linux-mips-low.cc +++ b/gdbserver/linux-mips-low.cc @@ -25,6 +25,18 @@ #include "nat/mips-linux-watch.h" #include "gdb_proc_service.h" +/* Linux target op definitions for the MIPS architecture. */ + +class mips_target : public linux_process_target +{ +public: + +}; + +/* The singleton target ops object. */ + +static mips_target the_mips_target; + /* Defined in auto-generated file mips-linux.c. */ void init_registers_mips_linux (void); extern const struct target_desc *tdesc_mips_linux; @@ -965,6 +977,10 @@ struct linux_target_ops the_low_target = { mips_linux_prepare_to_resume }; +/* The linux target ops object. */ + +linux_process_target *the_linux_target = &the_mips_target; + void initialize_low_arch (void) { |