OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 the V8 project 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 "src/libplatform/default-platform.h" | 5 #include "src/libplatform/default-platform.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <queue> | 8 #include <queue> |
9 | 9 |
10 #include "src/base/logging.h" | 10 #include "src/base/logging.h" |
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 static uint8_t no = 0; | 186 static uint8_t no = 0; |
187 return &no; | 187 return &no; |
188 } | 188 } |
189 | 189 |
190 | 190 |
191 const char* DefaultPlatform::GetCategoryGroupName( | 191 const char* DefaultPlatform::GetCategoryGroupName( |
192 const uint8_t* category_enabled_flag) { | 192 const uint8_t* category_enabled_flag) { |
193 static const char dummy[] = "dummy"; | 193 static const char dummy[] = "dummy"; |
194 return dummy; | 194 return dummy; |
195 } | 195 } |
| 196 |
| 197 size_t DefaultPlatform::NumberOfAvailableBackgroundThreads() { |
| 198 return static_cast<size_t>(thread_pool_size_); |
| 199 } |
| 200 |
196 } // namespace platform | 201 } // namespace platform |
197 } // namespace v8 | 202 } // namespace v8 |
OLD | NEW |