aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/cgroup.hh
blob: 3ead4735f524707798af9be8a3bb39d141d451ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#pragma once

#if __linux__

#include <chrono>
#include <optional>

#include "types.hh"

namespace nix {

std::map<std::string, std::string> getCgroups(const Path & cgroupFile);

struct CgroupStats
{
    std::optional<std::chrono::microseconds> cpuUser, cpuSystem;
};

/* Destroy the cgroup denoted by 'path'. The postcondition is that
   'path' does not exist, and thus any processes in the cgroup have
   been killed. Also return statistics from the cgroup just before
   destruction. */
CgroupStats destroyCgroup(const Path & cgroup);

}

#endif