]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blobdiff - gdb/x86-bsd-nat.h
Convert struct target_ops to C++
[thirdparty/binutils-gdb.git] / gdb / x86-bsd-nat.h
index ced33ac6aab7f4ed9ae9a83dd0894d0a63cf6824..1aee5fbc466b92c7e51b324f5a1342ed9dc15863 100644 (file)
 #ifndef X86_BSD_NAT_H
 #define X86_BSD_NAT_H
 
+#include "x86-nat.h"
+
 /* Low level x86 XSAVE info.  */
 extern size_t x86bsd_xsave_len;
 
-/* Create a prototype *BSD/x86 target.  The client can override it
-   with local methods.  */
-
-extern struct target_ops *x86bsd_target (void);
+/* A prototype *BSD/x86 target.  */
+
+template<typename BaseTarget>
+class x86bsd_nat_target : public x86_nat_target<BaseTarget>
+{
+  using base_class = x86_nat_target<BaseTarget>;
+public:
+#ifdef HAVE_PT_GETDBREGS
+  void mourn_inferior () override
+  {
+    x86_cleanup_dregs ();
+    base_class::mourn_inferior ();
+  }
+#endif /* HAVE_PT_GETDBREGS */
+};
 
 #endif /* x86-bsd-nat.h */