mirror of
https://github.com/trapexit/mergerfs.git
synced 2025-06-06 18:54:36 +08:00
Fix build on older distros due to std::atomic definitions
std::atomic_uint64_t missing in some older distros
This commit is contained in:
@ -30,7 +30,7 @@
|
||||
static std::uint32_t g_PAGESIZE = 0;
|
||||
static std::uint32_t g_BUFSIZE = 0;
|
||||
|
||||
static std::atomic_uint64_t g_MSGBUF_ALLOC_COUNT;
|
||||
static std::atomic<std::uint_fast64_t> g_MSGBUF_ALLOC_COUNT;
|
||||
|
||||
static std::mutex g_MUTEX;
|
||||
static std::vector<fuse_msgbuf_t*> g_MSGBUF_STACK;
|
||||
|
Reference in New Issue
Block a user