* Source/NSDistributedNotificationCenter.m: Added a short wait to the

_connect method when starting GDNC to correct bug#22351.  
	Worked with Riccardo Motolla to test this (riccardo@kaffe.org).


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@26082 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
gcasa 2008-02-18 00:25:24 +00:00
parent aa6a65309e
commit 3741279a5f
2 changed files with 15 additions and 1 deletions

View file

@ -42,7 +42,7 @@
#include "Foundation/NSHost.h"
#include "Foundation/NSPortNameServer.h"
#include "Foundation/NSDebug.h"
#include "Foundation/NSThread.h"
#include "../Tools/gdnc.h"
@ -736,6 +736,14 @@ static NSDistributedNotificationCenter *netCenter = nil;
}
[NSTask launchedTaskWithLaunchPath: cmd arguments: args];
/*
* Sleep for 3 seconds to prevent excessive polling and to
* give the GDNC process some time to start. On some systems
* it is failing to start because the polling is eating up
* all of the file descriptors.
*/
[NSThread sleepForTimeInterval: 3.0];
limit = [NSDate dateWithTimeIntervalSinceNow: 5.0];
while (_remote == nil && [limit timeIntervalSinceNow] > 0)
{