gdbserver: turn target op 'thread_stopped' into a method
[deliverable/binutils-gdb.git] / gdbserver / lynx-low.h
index 142a774011cc5c7753bbe2ba260fb592c2fb810e..4253f1259c29e6650a10e6ce89c3377c59aba368 100644 (file)
@@ -62,6 +62,35 @@ public:
                       const std::vector<char *> &program_args) override;
 
   int attach (unsigned long pid) override;
+
+  int kill (process_info *proc) override;
+
+  int detach (process_info *proc) override;
+
+  void mourn (process_info *proc) override;
+
+  void join (int pid) override;
+
+  bool thread_alive (ptid_t pid) override;
+
+  void resume (thread_resume *resume_info, size_t n) override;
+
+  ptid_t wait (ptid_t ptid, target_waitstatus *status,
+              int options) override;
+
+  void fetch_registers (regcache *regcache, int regno) override;
+
+  void store_registers (regcache *regcache, int regno) override;
+
+  int read_memory (CORE_ADDR memaddr, unsigned char *myaddr,
+                  int len) override;
+
+  int write_memory (CORE_ADDR memaddr, const unsigned char *myaddr,
+                   int len) override;
+
+  void request_interrupt () override;
+
+  bool supports_hardware_single_step () override;
 };
 
 /* The inferior's target description.  This is a global because the
This page took 0.045646 seconds and 4 git commands to generate.