Add constructor to stap_static_probe_ops
[deliverable/binutils-gdb.git] / gdb / i386-windows-nat.c
index 5d93915a72a953ad9467c8bbcfb9675e9048106f..bcabacc5a06e954709d320738f017c29d462a8a2 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2008-2012 Free Software Foundation, Inc.
+/* Copyright (C) 2008-2020 Free Software Foundation, Inc.
 
    This file is part of GDB.
 
@@ -17,7 +17,8 @@
 
 #include "defs.h"
 #include "windows-nat.h"
-#include "i386-nat.h"
+#include "x86-nat.h"
+#include "i386-tdep.h"
 
 #include <windows.h>
 
@@ -70,12 +71,18 @@ static const int mappings[] =
 };
 #undef context_offset
 
-/* -Wmissing-prototypes */
-extern initialize_file_ftype _initialize_i386_windows_nat;
+/* segment_register_p_ftype implementation for x86.  */
+
+static int
+i386_windows_segment_register_p (int regnum)
+{
+  return regnum >= I386_CS_REGNUM && regnum <= I386_GS_REGNUM;
+}
 
 void
 _initialize_i386_windows_nat (void)
 {
   windows_set_context_register_offsets (mappings);
-  i386_set_debug_register_length (4);
+  windows_set_segment_register_p (i386_windows_segment_register_p);
+  x86_set_debug_register_length (4);
 }
This page took 0.026228 seconds and 4 git commands to generate.