nix-super/src/libstore/cgroup.hh
2020-07-06 13:50:33 +02:00

16 lines
192 B
C++

#pragma once
#if __linux__
#include "types.hh"
namespace nix {
std::map<std::string, std::string> getCgroups(const Path & cgroupFile);
void destroyCgroup(const Path & cgroup);
}
#endif