[PATCH] D54938: [clangd] Prevent thread starvation in tests on loaded systems.
Sam McCall via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Nov 27 04:12:08 PST 2018
This revision was automatically updated to reflect the committed changes.
sammccall marked an inline comment as done.
Closed by commit rCTE347655: [clangd] Prevent thread starvation in tests on loaded systems. (authored by sammccall, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D54938?vs=175427&id=175454#toc
Repository:
rCTE Clang Tools Extra
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D54938/new/
https://reviews.llvm.org/D54938
Files:
clangd/Threading.cpp
clangd/Threading.h
clangd/tool/ClangdMain.cpp
unittests/clangd/BackgroundIndexTests.cpp
Index: clangd/tool/ClangdMain.cpp
===================================================================
--- clangd/tool/ClangdMain.cpp
+++ clangd/tool/ClangdMain.cpp
@@ -254,6 +254,7 @@
RunSynchronously = true;
InputStyle = JSONStreamStyle::Delimited;
PrettyPrint = true;
+ preventThreadStarvationInTests(); // Ensure background index makes progress.
}
if (Test || EnableTestScheme) {
static URISchemeRegistry::Add<TestScheme> X(
Index: clangd/Threading.cpp
===================================================================
--- clangd/Threading.cpp
+++ clangd/Threading.cpp
@@ -3,6 +3,7 @@
#include "llvm/ADT/ScopeExit.h"
#include "llvm/Support/FormatVariadic.h"
#include "llvm/Support/Threading.h"
+#include <atomic>
#include <thread>
#ifdef __USE_POSIX
#include <pthread.h>
@@ -100,6 +101,8 @@
CV.wait_until(Lock, D.time());
}
+static std::atomic<bool> AvoidThreadStarvation = {false};
+
void setThreadPriority(std::thread &T, ThreadPriority Priority) {
// Some *really* old glibcs are missing SCHED_IDLE.
#if defined(__linux__) && defined(SCHED_IDLE)
@@ -107,9 +110,13 @@
priority.sched_priority = 0;
pthread_setschedparam(
T.native_handle(),
- Priority == ThreadPriority::Low ? SCHED_IDLE : SCHED_OTHER, &priority);
+ Priority == ThreadPriority::Low && !AvoidThreadStarvation ? SCHED_IDLE
+ : SCHED_OTHER,
+ &priority);
#endif
}
+void preventThreadStarvationInTests() { AvoidThreadStarvation = true; }
+
} // namespace clangd
} // namespace clang
Index: clangd/Threading.h
===================================================================
--- clangd/Threading.h
+++ clangd/Threading.h
@@ -122,6 +122,10 @@
Normal = 1,
};
void setThreadPriority(std::thread &T, ThreadPriority Priority);
+// Avoid the use of scheduler policies that may starve low-priority threads.
+// This prevents tests from timing out on loaded systems.
+// Affects subsequent setThreadPriority() calls.
+void preventThreadStarvationInTests();
} // namespace clangd
} // namespace clang
Index: unittests/clangd/BackgroundIndexTests.cpp
===================================================================
--- unittests/clangd/BackgroundIndexTests.cpp
+++ unittests/clangd/BackgroundIndexTests.cpp
@@ -56,7 +56,12 @@
}
};
-TEST(BackgroundIndexTest, IndexTwoFiles) {
+class BackgroundIndexTest : public ::testing::Test {
+protected:
+ BackgroundIndexTest() { preventThreadStarvationInTests(); }
+};
+
+TEST_F(BackgroundIndexTest, IndexTwoFiles) {
MockFSProvider FS;
// a.h yields different symbols when included by A.cc vs B.cc.
FS.Files[testPath("root/A.h")] = R"cpp(
@@ -115,7 +120,7 @@
FileURI("unittest:///root/B.cc")}));
}
-TEST(BackgroundIndexTest, ShardStorageWriteTest) {
+TEST_F(BackgroundIndexTest, ShardStorageWriteTest) {
MockFSProvider FS;
FS.Files[testPath("root/A.h")] = R"cpp(
void common();
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D54938.175454.patch
Type: text/x-patch
Size: 2988 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20181127/b8ab09d3/attachment-0001.bin>
More information about the cfe-commits
mailing list