diff options
author | Eliot Horowitz <eliot@10gen.com> | 2011-04-06 10:33:26 -0400 |
---|---|---|
committer | Eliot Horowitz <eliot@10gen.com> | 2011-04-06 10:33:26 -0400 |
commit | 23dae53f75eaba0e3ad40fe37ca3e780c4a893c3 (patch) | |
tree | a340106cb99798b42dc08179780d4f044249a9f9 /dbtests | |
parent | 56daba0d4870a9e83739de88afacbe0b46cc975f (diff) | |
download | mongo-23dae53f75eaba0e3ad40fe37ca3e780c4a893c3.tar.gz |
try to make low priority rwlock more reliable
Diffstat (limited to 'dbtests')
-rw-r--r-- | dbtests/threadedtests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbtests/threadedtests.cpp b/dbtests/threadedtests.cpp index df8d93aa171..0cb04759a8c 100644 --- a/dbtests/threadedtests.cpp +++ b/dbtests/threadedtests.cpp @@ -256,7 +256,7 @@ namespace ThreadedTests { * note: this test will deadlock if the code breaks */ - RWLock lk( "eliot2" , 10000 ); + RWLock lk( "eliot2" , 120 * 1000 ); auto_ptr<rwlock> a( new rwlock( lk , false ) ); |