[PATCH] D75229: [clang-tidy] Add signal-in-multithreaded-program check
Endre Fülöp via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Jun 17 02:07:31 PDT 2020
gamesh411 added inline comments.
================
Comment at: clang-tools-extra/clang-tidy/bugprone/SignalInMultithreadedProgramCheck.h:23
+/// Finds ``signal`` function calls when the program is multithreaded. It
+/// founds a program multithreaded when it finds at least one function call
+/// of the following: ``thrd_create``, ``std::thread``, ``boost::thread``,
----------------
founds -> finds, but I would rather reword it like this:
The checker considers the analyzed program multithreaded if it finds ....
================
Comment at: clang-tools-extra/docs/ReleaseNotes.rst:107
+ Finds ``signal`` function calls when the program is multithreaded. It
+ founds a program multithreaded when it finds at least one function call
+ of the following: ``thrd_create``, ``std::thread``, ``boost::thread``,
----------------
Same as before.
Repository:
rCTE Clang Tools Extra
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D75229/new/
https://reviews.llvm.org/D75229
More information about the cfe-commits
mailing list