Chromium Code Reviews| Index: runtime/vm/os_thread_macos.cc |
| diff --git a/runtime/vm/os_thread_macos.cc b/runtime/vm/os_thread_macos.cc |
| index dbcd9e04fcd0b7e02880fd734bd9ff4b1176f081..827f74925763b78ab6886403d8577c876c1fa41a 100644 |
| --- a/runtime/vm/os_thread_macos.cc |
| +++ b/runtime/vm/os_thread_macos.cc |
| @@ -151,7 +151,7 @@ ThreadId OSThread::GetCurrentThreadId() { |
| ThreadId OSThread::GetCurrentThreadTraceId() { |
| - return pthread_mach_thread_np(pthread_self()); |
| + return ThreadIdFromIntPtr(pthread_mach_thread_np(pthread_self())); |
|
Ivan Posva
2015/09/25 07:48:42
This indicates that ThreadId and TraceId should pr
|
| } |