@@ -167,17 +167,20 @@ class WorkerThreadsTaskRunner::DelayedTaskScheduler {
167
167
};
168
168
169
169
WorkerThreadsTaskRunner::WorkerThreadsTaskRunner (int thread_pool_size) {
170
- Mutex::ScopedLock lock (platform_workers_mutex_);
171
- pending_platform_workers_ = thread_pool_size;
170
+ Mutex platform_workers_mutex;
171
+ ConditionVariable platform_workers_ready;
172
+
173
+ Mutex::ScopedLock lock (platform_workers_mutex);
174
+ int pending_platform_workers = thread_pool_size;
172
175
173
176
delayed_task_scheduler_.reset (
174
177
new DelayedTaskScheduler (&pending_worker_tasks_));
175
178
threads_.push_back (delayed_task_scheduler_->Start ());
176
179
177
180
for (int i = 0 ; i < thread_pool_size; i++) {
178
181
PlatformWorkerData* worker_data = new PlatformWorkerData{
179
- &pending_worker_tasks_, &platform_workers_mutex_ ,
180
- &platform_workers_ready_ , &pending_platform_workers_ , i
182
+ &pending_worker_tasks_, &platform_workers_mutex ,
183
+ &platform_workers_ready , &pending_platform_workers , i
181
184
};
182
185
std::unique_ptr<uv_thread_t > t { new uv_thread_t () };
183
186
if (uv_thread_create (t.get (), PlatformWorkerThread,
@@ -189,8 +192,8 @@ WorkerThreadsTaskRunner::WorkerThreadsTaskRunner(int thread_pool_size) {
189
192
190
193
// Wait for platform workers to initialize before continuing with the
191
194
// bootstrap.
192
- while (pending_platform_workers_ > 0 ) {
193
- platform_workers_ready_ .Wait (lock);
195
+ while (pending_platform_workers > 0 ) {
196
+ platform_workers_ready .Wait (lock);
194
197
}
195
198
}
196
199
0 commit comments