diff options
Diffstat (limited to 'gdbserver/win32-i386-low.cc')
-rw-r--r-- | gdbserver/win32-i386-low.cc | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gdbserver/win32-i386-low.cc b/gdbserver/win32-i386-low.cc index f5f09e9..29ee49f 100644 --- a/gdbserver/win32-i386-low.cc +++ b/gdbserver/win32-i386-low.cc @@ -40,7 +40,7 @@ static struct x86_debug_reg_state debug_reg_state; static void update_debug_registers (thread_info *thread) { - win32_thread_info *th = (win32_thread_info *) thread_target_data (thread); + windows_thread_info *th = (windows_thread_info *) thread_target_data (thread); /* The actual update is done later just before resuming the lwp, we just mark that the registers need updating. */ @@ -73,8 +73,8 @@ x86_dr_low_set_control (unsigned long control) static DWORD64 win32_get_current_dr (int dr) { - win32_thread_info *th - = (win32_thread_info *) thread_target_data (current_thread); + windows_thread_info *th + = (windows_thread_info *) thread_target_data (current_thread); win32_require_context (th); @@ -210,7 +210,7 @@ i386_initial_stuff (void) } static void -i386_get_thread_context (win32_thread_info *th) +i386_get_thread_context (windows_thread_info *th) { /* Requesting the CONTEXT_EXTENDED_REGISTERS register set fails if the system doesn't support extended registers. */ @@ -237,7 +237,7 @@ i386_get_thread_context (win32_thread_info *th) } static void -i386_prepare_to_resume (win32_thread_info *th) +i386_prepare_to_resume (windows_thread_info *th) { if (th->debug_registers_changed) { @@ -258,13 +258,13 @@ i386_prepare_to_resume (win32_thread_info *th) } static void -i386_thread_added (win32_thread_info *th) +i386_thread_added (windows_thread_info *th) { th->debug_registers_changed = 1; } static void -i386_single_step (win32_thread_info *th) +i386_single_step (windows_thread_info *th) { th->context.EFlags |= FLAG_TRACE_BIT; } @@ -398,7 +398,7 @@ static const int mappings[] = /* Fetch register from gdbserver regcache data. */ static void i386_fetch_inferior_register (struct regcache *regcache, - win32_thread_info *th, int r) + windows_thread_info *th, int r) { char *context_offset = (char *) &th->context + mappings[r]; @@ -420,7 +420,7 @@ i386_fetch_inferior_register (struct regcache *regcache, /* Store a new register value into the thread context of TH. */ static void i386_store_inferior_register (struct regcache *regcache, - win32_thread_info *th, int r) + windows_thread_info *th, int r) { char *context_offset = (char *) &th->context + mappings[r]; collect_register (regcache, r, context_offset); |