[PATCH] D32440: [scudo] Move thread local variables into their own files

Dmitry Vyukov via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Apr 26 11:59:17 PDT 2017


dvyukov added a comment.

otherwise looks good



================
Comment at: lib/scudo/scudo_tls_linux.cpp:59
+void initThreadMaybe() {
+  if (LIKELY(ScudoThreadState != ThreadNotInitialized))
+    return;
----------------
The fast path needs to be inlinable (defined in header file).


https://reviews.llvm.org/D32440





More information about the llvm-commits mailing list