Don't create a new thread for each raw event

Threads should be created as necessary, there is no reason to
launch a simple event handler in a new thread.
This commit is contained in:
pixl 2020-06-18 02:28:43 -04:00
parent cc025d3b96
commit 7571be1f54
No known key found for this signature in database
GPG Key ID: 1866C148CD593B6E

View File

@ -118,9 +118,8 @@ std::vector<uint8_t> RawDevice::_respondToReport
// All reports have the device index at byte 2
if(response[1] != request[1])
{
std::thread([this](std::vector<uint8_t> report) {
this->handleEvent(report);
}, request).detach();
if(continue_listen)
this->handleEvent(response);
continue;
}
@ -130,9 +129,8 @@ std::vector<uint8_t> RawDevice::_respondToReport
if(hidpp::ReportType::Short != response[0] &&
hidpp::ReportType::Long != response[0])
{
std::thread([this](std::vector<uint8_t> report) {
this->handleEvent(report);
}, request).detach();
if(continue_listen)
this->handleEvent(response);
continue;
}
@ -160,9 +158,8 @@ std::vector<uint8_t> RawDevice::_respondToReport
return response;
}
std::thread([this](std::vector<uint8_t> report) {
this->handleEvent(report);
}, request).detach();
if(continue_listen)
this->handleEvent(response);
}
}
@ -246,9 +243,8 @@ void RawDevice::listen()
}
std::vector<uint8_t> report;
_readReport(report, MAX_DATA_LENGTH);
std::thread([this](std::vector<uint8_t> report) {
this->handleEvent(report);
}, report).detach();
}
continue_listen = false;