aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/cgroup.hh
blob: dc6758957447bb03c375bbfcc559de4fe8033b52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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