Chromium Code Reviews| Index: runtime/vm/thread_pool.cc |
| =================================================================== |
| --- runtime/vm/thread_pool.cc (revision 42893) |
| +++ runtime/vm/thread_pool.cc (working copy) |
| @@ -231,7 +231,7 @@ |
| ASSERT(task_ != NULL); |
| } |
| #endif |
| - int result = Thread::Start(&Worker::Main, reinterpret_cast<uword>(this)); |
| + int result = OSThread::Start(&Worker::Main, reinterpret_cast<uword>(this)); |
| if (result != 0) { |
| FATAL1("Could not start worker thread: result = %d.", result); |
| } |