Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1056)

Unified Diff: base/threading/platform_thread_posix.cc

Issue 2884353004: fuchsia: base_unittests (mostly) compiling (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: base/threading/platform_thread_posix.cc
diff --git a/base/threading/platform_thread_posix.cc b/base/threading/platform_thread_posix.cc
index d9ee1ff7af57a8a7f6f8f647bc0961e229965514..e049a549d23cf52c09e143fef87bc66afe1e1fbe 100644
--- a/base/threading/platform_thread_posix.cc
+++ b/base/threading/platform_thread_posix.cc
@@ -137,7 +137,7 @@ PlatformThreadId PlatformThread::CurrentId() {
return syscall(__NR_gettid);
#elif defined(OS_ANDROID)
return gettid();
-#elif defined(OS_SOLARIS) || defined(OS_QNX)
+#elif defined(OS_SOLARIS) || defined(OS_QNX) || defined(OS_FUCHSIA)
return pthread_self();
#elif defined(OS_NACL) && defined(__GLIBC__)
return pthread_self();

Powered by Google App Engine
This is Rietveld 408576698