Skip to content

Commit

Permalink
FIX: reduced static delay between a hub handler and the next one from…
Browse files Browse the repository at this point in the history
… 500 ms to 100 ms
  • Loading branch information
thegabriele97 committed Mar 14, 2021
1 parent 2dd6d88 commit e442402
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions EthernetSimulatorDLL/MFCLibrary1/EthernetHub.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -168,13 +168,9 @@ static DWORD WINAPI HandlerThread(LPVOID hubPtr) {
}

DisconnectNamedPipe(hub->GetPipe());
Sleep(500);
Sleep(100);
}
}

return -1;
}

/*DWORD WINAPI PoolerThread(LPVOID arg) {
}*/

0 comments on commit e442402

Please sign in to comment.