2020-05-16 22:09:48 +03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#if __linux__
|
|
|
|
|
|
|
|
#include "types.hh"
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
2020-05-16 22:21:41 +03:00
|
|
|
std::map<std::string, std::string> getCgroups(const Path & cgroupFile);
|
|
|
|
|
2020-05-16 22:09:48 +03:00
|
|
|
void destroyCgroup(const Path & cgroup);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|