forked from lix-project/lix
16 lines
192 B
C++
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
|