Prefer object over notype symbols when disassembling
[deliverable/binutils-gdb.git] / gdb / ravenscar-thread.h
index 8aab0a124f2e2d1e2a57e178a220de90934c4b2a..add55533038e20777bb736e893b2bf9360e82fb0 100644 (file)
 
 struct ravenscar_arch_ops
 {
-  void (*to_fetch_registers) (struct regcache *, int);
-  void (*to_store_registers) (struct regcache *, int);
-  void (*to_prepare_to_store) (struct regcache *);
+  virtual ~ravenscar_arch_ops ()
+  {
+  }
+
+  virtual void fetch_registers (struct regcache *, int) = 0;
+  virtual void store_registers (struct regcache *, int) = 0;
 };
 
 #endif /* !defined (RAVENSCAR_THREAD_H) */
This page took 0.025944 seconds and 4 git commands to generate.