[PATCH] D94210: [ASan] Stop blocking child thread progress from parent thread in `pthread_create` interceptor.

Dan Liew via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Jan 6 17:49:36 PST 2021


delcypher added inline comments.


================
Comment at: compiler-rt/lib/asan/asan_thread.cpp:264
+  if (common_flags()->detect_leaks && arg_ && unignore_arg_on_start_)
+    (void)__lsan::UnIgnoreObjectLocked(arg_);
+#endif
----------------
The lint warning here can be ignored. The function is introduced by https://reviews.llvm.org/D94209


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D94210/new/

https://reviews.llvm.org/D94210



More information about the llvm-commits mailing list