shorter thread names

This commit is contained in:
2024-09-17 15:58:06 +03:00
parent f105f616f6
commit e186e0adff
7 changed files with 19 additions and 18 deletions

View File

@@ -171,7 +171,7 @@ bool PITimer::waitForFinish(PISystemTime timeout) {
void PITimer::initFirst() {
thread = new PIThread([this] { threadFunc(); });
thread->setName("__S__.PITimer.thread");
thread->setName("_S.PITimer.thread");
setProperty("interval", PISystemTime());
}