You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-27 21:01:50 +03:00
No boost condition (#2822)
This patch replaces boost primitives with stdlib counterparts.
This commit is contained in:
@ -21,7 +21,7 @@
|
||||
****************************************************************************/
|
||||
|
||||
#include <boost/thread.hpp>
|
||||
#include <boost/thread/condition.hpp>
|
||||
#include <condition_variable>
|
||||
|
||||
#define TRANSACTIONNODE_DLLEXPORT
|
||||
#include "transactionnode.h"
|
||||
@ -47,7 +47,7 @@ int TransactionNode::getTxnID() const
|
||||
return txnID;
|
||||
}
|
||||
|
||||
void TransactionNode::sleep(boost::mutex& mutex)
|
||||
void TransactionNode::sleep(std::mutex& mutex)
|
||||
{
|
||||
_sleeping = true;
|
||||
condVar.wait(mutex);
|
||||
|
Reference in New Issue
Block a user