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

Unified Diff: third_party/WebKit/Source/wtf/ThreadingPthreads.cpp

Issue 2623273007: Fast path for ThreadSpecific for main thread on TLS-slow platforms (Closed)
Patch Set: haraken revieqw Created 3 years, 11 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
« no previous file with comments | « third_party/WebKit/Source/wtf/ThreadSpecific.h ('k') | third_party/WebKit/Source/wtf/ThreadingWin.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/wtf/ThreadingPthreads.cpp
diff --git a/third_party/WebKit/Source/wtf/ThreadingPthreads.cpp b/third_party/WebKit/Source/wtf/ThreadingPthreads.cpp
index ad9b520ac9f44add1284c67ea911ffe9aed00030..886e661c2aa6746139444527a8e0eedf72156e33 100644
--- a/third_party/WebKit/Source/wtf/ThreadingPthreads.cpp
+++ b/third_party/WebKit/Source/wtf/ThreadingPthreads.cpp
@@ -103,15 +103,7 @@ void unlockAtomicallyInitializedStaticMutex() {
}
ThreadIdentifier currentThread() {
-// TLS lookup is fast on these platforms.
-#if defined(__GLIBC__) || OS(ANDROID) || OS(FREEBSD)
return wtfThreadData().threadId();
-#else
- // TODO(csharrison): For platforms where TLS lookup is slow, use the hack that
- // oilpan uses in ThreadState::current() to check if this is the main thread
- // via stack address.
- return internal::currentThreadSyscall();
-#endif
}
MutexBase::MutexBase(bool recursive) {
« no previous file with comments | « third_party/WebKit/Source/wtf/ThreadSpecific.h ('k') | third_party/WebKit/Source/wtf/ThreadingWin.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698