diff options
Diffstat (limited to 'base/threading')
-rw-r--r-- | base/threading/platform_thread_win.cc | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/base/threading/platform_thread_win.cc b/base/threading/platform_thread_win.cc index f5c6176..d5e64c1 100644 --- a/base/threading/platform_thread_win.cc +++ b/base/threading/platform_thread_win.cc @@ -34,14 +34,6 @@ struct ThreadParams { }; DWORD __stdcall ThreadFunc(void* params) { - // TODO(apatrick): Remove this ASAP. This ensures that if the - // TerminateProcess entry point has been patched to point into a third party - // DLL, this is visible on the stack and the DLL in question can be - // determined. - typedef BOOL (WINAPI *TerminateProcessPtr)(HANDLE, UINT); - TerminateProcessPtr terminate_process = TerminateProcess; - base::debug::Alias(&terminate_process); - ThreadParams* thread_params = static_cast<ThreadParams*>(params); PlatformThread::Delegate* delegate = thread_params->delegate; if (!thread_params->joinable) |