Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(486)

Side by Side Diff: src/libplatform/default-platform.cc

Issue 1664203004: [platform] Add NumberOfAvailableBackgroundThreads (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Addressed comment Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/libplatform/default-platform.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « src/libplatform/default-platform.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698