OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "base/threading/platform_thread.h" | 5 #include "base/threading/platform_thread.h" |
6 | 6 |
7 #include "base/debug/alias.h" | 7 #include "base/debug/alias.h" |
8 #include "base/debug/profiler.h" | 8 #include "base/debug/profiler.h" |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "base/threading/thread_id_name_manager.h" | 10 #include "base/threading/thread_id_name_manager.h" |
11 #include "base/threading/thread_restrictions.h" | 11 #include "base/threading/thread_restrictions.h" |
12 #include "base/tracked_objects.h" | 12 #include "base/tracked_objects.h" |
13 | 13 #include "base/win/scoped_handle.h" |
14 #include "base/win/windows_version.h" | 14 #include "base/win/windows_version.h" |
15 | 15 |
16 namespace base { | 16 namespace base { |
17 | 17 |
18 namespace { | 18 namespace { |
19 | 19 |
20 // The information on how to set the thread name comes from | 20 // The information on how to set the thread name comes from |
21 // a MSDN article: http://msdn2.microsoft.com/en-us/library/xcb2z8hs.aspx | 21 // a MSDN article: http://msdn2.microsoft.com/en-us/library/xcb2z8hs.aspx |
22 const DWORD kVCThreadNameException = 0x406D1388; | 22 const DWORD kVCThreadNameException = 0x406D1388; |
23 | 23 |
(...skipping 23 matching lines...) Expand all Loading... | |
47 PlatformThread::Delegate* delegate; | 47 PlatformThread::Delegate* delegate; |
48 bool joinable; | 48 bool joinable; |
49 }; | 49 }; |
50 | 50 |
51 DWORD __stdcall ThreadFunc(void* params) { | 51 DWORD __stdcall ThreadFunc(void* params) { |
52 ThreadParams* thread_params = static_cast<ThreadParams*>(params); | 52 ThreadParams* thread_params = static_cast<ThreadParams*>(params); |
53 PlatformThread::Delegate* delegate = thread_params->delegate; | 53 PlatformThread::Delegate* delegate = thread_params->delegate; |
54 if (!thread_params->joinable) | 54 if (!thread_params->joinable) |
55 base::ThreadRestrictions::SetSingletonAllowed(false); | 55 base::ThreadRestrictions::SetSingletonAllowed(false); |
56 | 56 |
57 /* Retrieve a copy of the thread handle to use as the key in the | 57 // Retrieve a copy of the thread handle to use as the key in the |
58 * thread name mapping. */ | 58 // thread name mapping. |
59 PlatformThreadHandle::Handle platform_handle; | 59 PlatformThreadHandle::Handle platform_handle; |
60 DuplicateHandle( | 60 if (!DuplicateHandle( |
61 GetCurrentProcess(), | 61 GetCurrentProcess(), |
brettw
2013/12/12 21:58:29
This indentation is a bit weird. I'd do them all a
dsinclair
2013/12/13 15:44:29
Done.
| |
62 GetCurrentThread(), | 62 GetCurrentThread(), |
63 GetCurrentProcess(), | 63 GetCurrentProcess(), |
64 &platform_handle, | 64 &platform_handle, |
65 0, | 65 0, |
66 FALSE, | 66 FALSE, |
67 DUPLICATE_SAME_ACCESS); | 67 DUPLICATE_SAME_ACCESS)) { |
68 NOTREACHED(); | |
69 } | |
70 | |
71 win::ScopedHandle scoped_platform_handle(platform_handle); | |
68 | 72 |
69 ThreadIdNameManager::GetInstance()->RegisterThread( | 73 ThreadIdNameManager::GetInstance()->RegisterThread( |
70 platform_handle, | 74 platform_handle, |
71 PlatformThread::CurrentId()); | 75 PlatformThread::CurrentId()); |
72 | 76 |
73 delete thread_params; | 77 delete thread_params; |
74 delegate->ThreadMain(); | 78 delegate->ThreadMain(); |
75 | 79 |
76 ThreadIdNameManager::GetInstance()->RemoveName( | 80 ThreadIdNameManager::GetInstance()->RemoveName( |
77 platform_handle, | 81 platform_handle, |
78 PlatformThread::CurrentId()); | 82 PlatformThread::CurrentId()); |
83 | |
brettw
2013/12/12 21:58:29
This addition seems unnecessary.
dsinclair
2013/12/13 15:44:29
Done.
| |
79 return NULL; | 84 return NULL; |
80 } | 85 } |
81 | 86 |
82 // CreateThreadInternal() matches PlatformThread::Create(), except that | 87 // CreateThreadInternal() matches PlatformThread::Create(), except that |
83 // |out_thread_handle| may be NULL, in which case a non-joinable thread is | 88 // |out_thread_handle| may be NULL, in which case a non-joinable thread is |
84 // created. | 89 // created. |
85 bool CreateThreadInternal(size_t stack_size, | 90 bool CreateThreadInternal(size_t stack_size, |
86 PlatformThread::Delegate* delegate, | 91 PlatformThread::Delegate* delegate, |
87 PlatformThreadHandle* out_thread_handle) { | 92 PlatformThreadHandle* out_thread_handle) { |
88 unsigned int flags = 0; | 93 unsigned int flags = 0; |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
230 case kThreadPriority_RealtimeAudio: | 235 case kThreadPriority_RealtimeAudio: |
231 ::SetThreadPriority(handle.handle_, THREAD_PRIORITY_TIME_CRITICAL); | 236 ::SetThreadPriority(handle.handle_, THREAD_PRIORITY_TIME_CRITICAL); |
232 break; | 237 break; |
233 default: | 238 default: |
234 NOTREACHED() << "Unknown priority."; | 239 NOTREACHED() << "Unknown priority."; |
235 break; | 240 break; |
236 } | 241 } |
237 } | 242 } |
238 | 243 |
239 } // namespace base | 244 } // namespace base |
OLD | NEW |