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
Atomic bools for RWLockMonitor
This commit is contained in:
@ -36,12 +36,13 @@
|
||||
#include "crashtrace.h"
|
||||
#include "service.h"
|
||||
#include "jobstep.h"
|
||||
#include <atomic>
|
||||
|
||||
using namespace BRM;
|
||||
using namespace std;
|
||||
|
||||
std::unique_ptr<SlaveComm> comm;
|
||||
bool die = false;
|
||||
std::atomic<bool> die{false};
|
||||
boost::thread_group monitorThreads;
|
||||
|
||||
class Opt
|
||||
|
Reference in New Issue
Block a user