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

Unified Diff: src/IceGlobalContext.cpp

Issue 872933002: Subzero: Second attempt at fixing MacOS 10.6 build. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Reformat to 80-columns Created 5 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
Index: src/IceGlobalContext.cpp
diff --git a/src/IceGlobalContext.cpp b/src/IceGlobalContext.cpp
index 9e1b72c9f47486f1b34e47066b69570d4c1e2f93..3b468254baa07dc44a3a65d5bc9ea4496371fcae 100644
--- a/src/IceGlobalContext.cpp
+++ b/src/IceGlobalContext.cpp
@@ -136,7 +136,7 @@ GlobalContext::GlobalContext(Ostream *OsDump, Ostream *OsEmit,
// lock AllThreadContexts at this point since no other threads have
// access yet to this GlobalContext object.
AllThreadContexts.push_back(new ThreadContext());
- TLS = AllThreadContexts.back();
+ ICE_TLS_SET_FIELD(TLS, AllThreadContexts.back());
// Pre-register built-in stack names.
if (ALLOW_DUMP) {
// TODO(stichnot): There needs to be a strong relationship between
@@ -495,7 +495,8 @@ void GlobalContext::dumpStats(const IceString &Name, bool Final) {
if (Final) {
getStatsCumulative()->dump(Name, getStrDump());
} else {
- TLS->StatsFunction.dump(Name, getStrDump());
+ ICE_TLS_GET_FIELD(TLS, ThreadContext *)->StatsFunction.dump(Name,
+ getStrDump());
getStatsCumulative()->dump("_TOTAL_", getStrDump());
}
}
@@ -518,6 +519,6 @@ TimerMarker::TimerMarker(TimerIdT ID, const Cfg *Func)
}
}
-ICE_ATTRIBUTE_TLS GlobalContext::ThreadContext *GlobalContext::TLS;
+ICE_TLS_DEFINE_FIELD(GlobalContext, TLS, GlobalContext::ThreadContext *);
} // end of namespace Ice

Powered by Google App Engine
This is Rietveld 408576698