From dc93d2e69df6e1649afff87ac49408649bdf608b Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 5 Aug 2016 17:55:04 +0200 Subject: Adjust to threading API changes in libodb --- odb/pgsql/connection-factory.cxx | 4 ++-- 1 file 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_--; } } -- cgit v1.1