1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-02 03:20:06 +00:00

Improved the idling of socket InterprocessConnections

This commit is contained in:
Tom Poole 2017-11-27 17:26:10 +00:00
parent 2e9bd44006
commit fe7f34f0fa
2 changed files with 2 additions and 2 deletions

View file

@ -325,7 +325,7 @@ void InterprocessConnection::runThread()
{
if (socket != nullptr)
{
auto ready = socket->waitUntilReady (true, 0);
auto ready = socket->waitUntilReady (true, 100);
if (ready < 0)
{

View file

@ -48,7 +48,7 @@ public:
//==============================================================================
/** Starts an internal thread which listens on the given port number.
While this is running, in another process tries to connect with the
While this is running, if another process tries to connect with the
InterprocessConnection::connectToSocket() method, this object will call
createConnectionObject() to create a connection to that client.