mirror of
https://github.com/trapexit/mergerfs.git
synced 2025-01-21 15:19:46 +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:
parent
832903378e
commit
5d6c9cc56a
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue
Block a user