1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 10:50:24 -04:00

Simplify getRootCgroup()

Static local initializers are atomic in C++.
This commit is contained in:
Parker Hoyes 2024-09-04 18:11:16 +00:00
parent 4c88deef38
commit 03484641a1

View file

@ -6,7 +6,6 @@
#include <chrono>
#include <cmath>
#include <mutex>
#include <regex>
#include <unordered_set>
#include <thread>
@ -158,22 +157,10 @@ std::string getCurrentCgroup()
return ourCgroup;
}
static std::optional<std::string> rootCgroup;
static std::mutex rootCgroupMutex;
std::string getRootCgroup()
{
{
std::lock_guard<std::mutex> guard(rootCgroupMutex);
if (rootCgroup)
return *rootCgroup;
}
auto current = getCurrentCgroup();
std::lock_guard<std::mutex> guard(rootCgroupMutex);
if (rootCgroup)
return *rootCgroup;
rootCgroup = current;
return current;
static std::string rootCgroup = getCurrentCgroup();
return rootCgroup;
}
}