summaryrefslogtreecommitdiff
path: root/lib/scudo/scudo_tsd_shared.inc
diff options
context:
space:
mode:
Diffstat (limited to 'lib/scudo/scudo_tsd_shared.inc')
-rw-r--r--lib/scudo/scudo_tsd_shared.inc8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/scudo/scudo_tsd_shared.inc b/lib/scudo/scudo_tsd_shared.inc
index 874942bba..9b9c3a2ec 100644
--- a/lib/scudo/scudo_tsd_shared.inc
+++ b/lib/scudo/scudo_tsd_shared.inc
@@ -17,8 +17,12 @@
#if !SCUDO_TSD_EXCLUSIVE
+ALWAYS_INLINE ScudoTSD* getCurrentTSD() {
+ return reinterpret_cast<ScudoTSD *>(*get_android_tls_ptr());
+}
+
ALWAYS_INLINE void initThreadMaybe(bool MinimalInit = false) {
- if (LIKELY(*get_android_tls_ptr()))
+ if (LIKELY(getCurrentTSD()))
return;
initThread(MinimalInit);
}
@@ -26,7 +30,7 @@ ALWAYS_INLINE void initThreadMaybe(bool MinimalInit = false) {
ScudoTSD *getTSDAndLockSlow();
ALWAYS_INLINE ScudoTSD *getTSDAndLock() {
- ScudoTSD *TSD = reinterpret_cast<ScudoTSD *>(*get_android_tls_ptr());
+ ScudoTSD *TSD = getCurrentTSD();
CHECK(TSD && "No TSD associated with the current thread!");
// Try to lock the currently associated context.
if (TSD->tryLock())