Revision: 24634
Author:   [email protected]
Date:     Wed Oct 15 12:38:53 2014 UTC
Log:      Fix GetCurrentThreadId for Solaris etc..

BUG=v8:3620
[email protected]
LOG=n

Review URL: https://codereview.chromium.org/653263003
https://code.google.com/p/v8/source/detail?r=24634

Modified:
 /branches/bleeding_edge/src/base/platform/platform-posix.cc

=======================================
--- /branches/bleeding_edge/src/base/platform/platform-posix.cc Fri Oct 10 07:27:33 2014 UTC +++ /branches/bleeding_edge/src/base/platform/platform-posix.cc Wed Oct 15 12:38:53 2014 UTC
@@ -260,7 +260,7 @@
 #elif V8_OS_ANDROID
   return static_cast<int>(gettid());
 #else
-  return reinterpret_cast<int>(pthread_self());
+  return static_cast<int>(pthread_self());
 #endif
 }

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to