mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-04 20:46:28 +01:00
tolerate failure to get lock for five seconds before asserting (up
from one.)
This commit is contained in:
parent
75602c47d8
commit
3c19a7ef44
1 changed files with 1 additions and 1 deletions
|
@ -103,7 +103,7 @@ public class GameUtils {
|
|||
|
||||
public GameLock lock()
|
||||
{
|
||||
long stopTime = System.currentTimeMillis() + 1000;
|
||||
long stopTime = System.currentTimeMillis() + 5000;
|
||||
// DbgUtils.logf( "GameLock.lock(%s)", m_path );
|
||||
// Utils.printStack();
|
||||
for ( ; ; ) {
|
||||
|
|
Loading…
Add table
Reference in a new issue