Revision: 24512
Author: [email protected]
Date: Fri Oct 10 07:27:33 2014 UTC
Log: Fix typo in Mac GetCurrentThreadId
BUG=none
[email protected]
LOG=n
Review URL: https://codereview.chromium.org/642223003
https://code.google.com/p/v8/source/detail?r=24512
Modified:
/branches/bleeding_edge/src/base/platform/platform-posix.cc
=======================================
--- /branches/bleeding_edge/src/base/platform/platform-posix.cc Fri Oct 10
07:22:57 2014 UTC
+++ /branches/bleeding_edge/src/base/platform/platform-posix.cc Fri Oct 10
07:27:33 2014 UTC
@@ -254,7 +254,7 @@
int OS::GetCurrentThreadId() {
#if V8_OS_MACOSX
- return static_cast<int>(pthread_mac_thread_np(pthread_self()));
+ return static_cast<int>(pthread_mach_thread_np(pthread_self()));
#elif V8_OS_LINUX
return static_cast<int>(syscall(__NR_gettid));
#elif V8_OS_ANDROID
--
--
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.