OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 <errno.h> | 7 #include <errno.h> |
8 #include <sched.h> | 8 #include <sched.h> |
9 | 9 |
10 #include "base/lazy_instance.h" | 10 #include "base/lazy_instance.h" |
(...skipping 12 matching lines...) Expand all Loading... |
23 | 23 |
24 namespace internal { | 24 namespace internal { |
25 | 25 |
26 namespace { | 26 namespace { |
27 #if !defined(OS_NACL) | 27 #if !defined(OS_NACL) |
28 const struct sched_param kRealTimePrio = {8}; | 28 const struct sched_param kRealTimePrio = {8}; |
29 #endif | 29 #endif |
30 } // namespace | 30 } // namespace |
31 | 31 |
32 const ThreadPriorityToNiceValuePair kThreadPriorityToNiceValueMap[4] = { | 32 const ThreadPriorityToNiceValuePair kThreadPriorityToNiceValueMap[4] = { |
33 { kThreadPriority_RealtimeAudio, -10 }, | 33 {ThreadPriority::BACKGROUND, 10}, |
34 { kThreadPriority_Background, 10 }, | 34 {ThreadPriority::NORMAL, 0}, |
35 { kThreadPriority_Normal, 0 }, | 35 {ThreadPriority::DISPLAY, -6}, |
36 { kThreadPriority_Display, -6 }, | 36 {ThreadPriority::REALTIME_AUDIO, -10}, |
37 } | 37 } |
38 | 38 |
39 bool SetThreadPriorityForPlatform(PlatformThreadHandle handle, | 39 bool SetThreadPriorityForPlatform(PlatformThreadHandle handle, |
40 ThreadPriority priority) { | 40 ThreadPriority priority) { |
41 #if !defined(OS_NACL) | 41 #if !defined(OS_NACL) |
42 // TODO(gab): Assess the correctness of using |pthread_self()| below instead | 42 // TODO(gab): Assess the correctness of using |pthread_self()| below instead |
43 // of |handle|. http://crbug.com/468793. | 43 // of |handle|. http://crbug.com/468793. |
44 return priority == kThreadPriority_RealtimeAudio && | 44 return priority == ThreadPriority::REALTIME_AUDIO && |
45 pthread_setschedparam(pthread_self(), SCHED_RR, &kRealTimePrio) == 0; | 45 pthread_setschedparam(pthread_self(), SCHED_RR, &kRealTimePrio) == 0; |
46 #else | 46 #else |
47 return false; | 47 return false; |
48 #endif | 48 #endif |
49 } | 49 } |
50 | 50 |
51 bool GetThreadPriorityForPlatform(PlatformThreadHandle handle, | 51 bool GetThreadPriorityForPlatform(PlatformThreadHandle handle, |
52 ThreadPriority* priority) { | 52 ThreadPriority* priority) { |
53 #if !defined(OS_NACL) | 53 #if !defined(OS_NACL) |
54 // TODO(gab): Assess the correctness of using |pthread_self()| below instead | 54 // TODO(gab): Assess the correctness of using |pthread_self()| below instead |
55 // of |handle|. http://crbug.com/468793. | 55 // of |handle|. http://crbug.com/468793. |
56 int maybe_sched_rr = 0; | 56 int maybe_sched_rr = 0; |
57 struct sched_param maybe_realtime_prio = {0}; | 57 struct sched_param maybe_realtime_prio = {0}; |
58 if (pthread_getschedparam(pthread_self(), &maybe_sched_rr, | 58 if (pthread_getschedparam(pthread_self(), &maybe_sched_rr, |
59 &maybe_realtime_prio) == 0 && | 59 &maybe_realtime_prio) == 0 && |
60 maybe_sched_rr == SCHED_RR && | 60 maybe_sched_rr == SCHED_RR && |
61 maybe_realtime_prio.sched_priority == kRealTimePrio.sched_priority) { | 61 maybe_realtime_prio.sched_priority == kRealTimePrio.sched_priority) { |
62 *priority = kThreadPriority_RealtimeAudio; | 62 *priority = ThreadPriority::REALTIME_AUDIO; |
63 return true; | 63 return true; |
64 } | 64 } |
65 #endif | 65 #endif |
66 return false; | 66 return false; |
67 } | 67 } |
68 | 68 |
69 } // namespace internal | 69 } // namespace internal |
70 | 70 |
71 // static | 71 // static |
72 void PlatformThread::SetName(const char* name) { | 72 void PlatformThread::SetName(const char* name) { |
(...skipping 21 matching lines...) Expand all Loading... |
94 #if !defined(THREAD_SANITIZER) | 94 #if !defined(THREAD_SANITIZER) |
95 return 0; | 95 return 0; |
96 #else | 96 #else |
97 // ThreadSanitizer bloats the stack heavily. Evidence has been that the | 97 // ThreadSanitizer bloats the stack heavily. Evidence has been that the |
98 // default stack size isn't enough for some browser tests. | 98 // default stack size isn't enough for some browser tests. |
99 return 2 * (1 << 23); // 2 times 8192K (the default stack size on Linux). | 99 return 2 * (1 << 23); // 2 times 8192K (the default stack size on Linux). |
100 #endif | 100 #endif |
101 } | 101 } |
102 | 102 |
103 } // namespace base | 103 } // namespace base |
OLD | NEW |