| Index: runtime/vm/os_win.cc
|
| ===================================================================
|
| --- runtime/vm/os_win.cc (revision 42893)
|
| +++ runtime/vm/os_win.cc (working copy)
|
| @@ -13,7 +13,7 @@
|
|
|
| #include "platform/utils.h"
|
| #include "platform/assert.h"
|
| -#include "vm/thread.h"
|
| +#include "vm/os_thread.h"
|
| #include "vm/vtune.h"
|
|
|
| namespace dart {
|
| @@ -247,7 +247,7 @@
|
| }
|
| va_list args_copy;
|
| va_copy(args_copy, args);
|
| - int written =_vsnprintf(str, size, format, args_copy);
|
| + int written = _vsnprintf(str, size, format, args_copy);
|
| va_end(args_copy);
|
| if (written < 0) {
|
| // _vsnprintf returns -1 if the number of characters to be written is
|
| @@ -315,7 +315,7 @@
|
| init_once_called = true;
|
| // Do not pop up a message box when abort is called.
|
| _set_abort_behavior(0, _WRITE_ABORT_MSG);
|
| - MonitorWaitData::monitor_wait_data_key_ = Thread::CreateThreadLocal();
|
| + MonitorWaitData::monitor_wait_data_key_ = OSThread::CreateThreadLocal();
|
| MonitorData::GetMonitorWaitDataForThread();
|
| }
|
|
|
|
|