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