You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
clang format apply
This commit is contained in:
@ -40,32 +40,30 @@
|
||||
|
||||
namespace BRM
|
||||
{
|
||||
|
||||
class TransactionNode : public RGNode
|
||||
{
|
||||
public:
|
||||
EXPORT explicit TransactionNode(int txnid = 0);
|
||||
EXPORT virtual ~TransactionNode();
|
||||
public:
|
||||
EXPORT explicit TransactionNode(int txnid = 0);
|
||||
EXPORT virtual ~TransactionNode();
|
||||
|
||||
EXPORT void setTxnID(VER_t);
|
||||
EXPORT int getTxnID() const;
|
||||
EXPORT void setTxnID(VER_t);
|
||||
EXPORT int getTxnID() const;
|
||||
|
||||
EXPORT void sleep(boost::mutex& mutex);
|
||||
EXPORT void wake();
|
||||
EXPORT void die();
|
||||
EXPORT bool dead();
|
||||
EXPORT bool sleeping();
|
||||
EXPORT void sleep(boost::mutex& mutex);
|
||||
EXPORT void wake();
|
||||
EXPORT void die();
|
||||
EXPORT bool dead();
|
||||
EXPORT bool sleeping();
|
||||
|
||||
private:
|
||||
TransactionNode(const TransactionNode&);
|
||||
TransactionNode& operator=(const TransactionNode&);
|
||||
private:
|
||||
TransactionNode(const TransactionNode&);
|
||||
TransactionNode& operator=(const TransactionNode&);
|
||||
|
||||
boost::condition condVar;
|
||||
VER_t txnID;
|
||||
bool _die, _sleeping;
|
||||
boost::condition condVar;
|
||||
VER_t txnID;
|
||||
bool _die, _sleeping;
|
||||
};
|
||||
|
||||
#undef EXPORT
|
||||
|
||||
} // namespace
|
||||
|
||||
} // namespace BRM
|
||||
|
Reference in New Issue
Block a user