[PATCH] D51103: [Support] Add a way to run a function on a detached thread
Dmitry via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Aug 22 08:50:58 PDT 2018
Dmitry.Kozhevnikov marked an inline comment as done.
Dmitry.Kozhevnikov added inline comments.
================
Comment at: lib/Support/Threading.cpp:109
+ SyncThreadInfo Info = {Fn, UserData};
+ llvm_execute_on_thread_impl(threadFuncSync, &Info, RequestedStackSize, false);
+}
----------------
zturner wrote:
> Shouldn't the last parameter be set to `true` here?
Oops, sorry, last-minute typo.
Repository:
rL LLVM
https://reviews.llvm.org/D51103
More information about the llvm-commits
mailing list