mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 07:57:51 -05:00
Merge pull request #234 from ReOne21/patch-1
Remove SetThreadDescription calls
This commit is contained in:
commit
fe14737ee4
1 changed files with 2 additions and 2 deletions
|
@ -126,7 +126,7 @@ void Loader::Impl::setupIPC() {
|
|||
if (ConnectNamedPipe(pipe, nullptr)) {
|
||||
// log::debug("Got connection, creating thread");
|
||||
std::thread pipeThread(&ipcPipeThread, pipe);
|
||||
SetThreadDescription(pipeThread.native_handle(), L"Geode IPC Pipe");
|
||||
// SetThreadDescription(pipeThread.native_handle(), L"Geode IPC Pipe");
|
||||
pipeThread.detach();
|
||||
}
|
||||
else {
|
||||
|
@ -135,7 +135,7 @@ void Loader::Impl::setupIPC() {
|
|||
}
|
||||
}
|
||||
});
|
||||
SetThreadDescription(ipcThread.native_handle(), L"Geode Main IPC");
|
||||
// SetThreadDescription(ipcThread.native_handle(), L"Geode Main IPC");
|
||||
ipcThread.detach();
|
||||
|
||||
log::debug("IPC set up");
|
||||
|
|
Loading…
Reference in a new issue