Fixed compile on Windows.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3999 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2011-01-30 11:37:34 +00:00
parent 71798f4e8a
commit 62f7404199

View File

@ -268,11 +268,20 @@ void p3GroupDistrib::run() /* called once the thread is started */
if (validCache)
{
loadAnyCache(cache, isLocal);
#ifndef WINDOWS_SYS
usleep(1000);
#else
Sleep(1);
#endif
}
else
{
#ifndef WINDOWS_SYS
sleep(1);
#else
Sleep(1000);
#endif
}
}
}