void handle_unload_dll (const DEBUG_EVENT ¤t_event) override;
bool handle_access_violation (const EXCEPTION_RECORD *rec) override;
- void invalidate_context (windows_thread_info *th);
void fill_thread_context (windows_thread_info *th) override;
void continue_one_thread (windows_thread_info *th,
return as_windows_thread_info (thr);
}
-/* Invalidate TH's context. */
-
-void
-windows_per_inferior::invalidate_context (windows_thread_info *th)
-{
-#ifdef __x86_64__
- if (windows_process.wow64_process)
- th->wow64_context.ContextFlags = 0;
- else
-#endif
- th->context.ContextFlags = 0;
-}
-
/* Add a thread to the thread list.
PTID is the ptid of the thread to be added.