aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--odb/pgsql/connection-factory.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/odb/pgsql/connection-factory.cxx b/odb/pgsql/connection-factory.cxx
index a57fc41..639f8b7 100644
--- a/odb/pgsql/connection-factory.cxx
+++ b/odb/pgsql/connection-factory.cxx
@@ -41,7 +41,7 @@ namespace odb
while (in_use_ != 0)
{
waiters_++;
- cond_.wait ();
+ cond_.wait (l);
waiters_--;
}
}
@@ -78,7 +78,7 @@ namespace odb
// Wait until someone releases a connection.
//
waiters_++;
- cond_.wait ();
+ cond_.wait (l);
waiters_--;
}
}