]> git.ipfire.org Git - people/ms/systemd.git/blame - cgroup.h
execute: typo fix
[people/ms/systemd.git] / cgroup.h
CommitLineData
8e274523
LP
1/*-*- Mode: C; c-basic-offset: 8 -*-*/
2
3#ifndef foocgrouphfoo
4#define foocgrouphfoo
5
6/***
7 This file is part of systemd.
8
9 Copyright 2010 Lennart Poettering
10
11 systemd is free software; you can redistribute it and/or modify it
12 under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2 of the License, or
14 (at your option) any later version.
15
16 systemd is distributed in the hope that it will be useful, but
17 WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with systemd; If not, see <http://www.gnu.org/licenses/>.
23***/
24
25#include <libcgroup.h>
26
27typedef struct CGroupBonding CGroupBonding;
28
29#include "unit.h"
30
31/* Binds a cgroup to a name */
32struct CGroupBonding {
33 char *controller;
34 char *path;
35
36 Unit *unit;
37
38 struct cgroup *cgroup;
39
9d58f1db
LP
40 /* For the Unit::cgroup_bondings list */
41 LIST_FIELDS(CGroupBonding, by_unit);
42
43 /* For the Manager::cgroup_bondings hashmap */
44 LIST_FIELDS(CGroupBonding, by_path);
45
8e274523
LP
46 /* When shutting down, remove cgroup? */
47 bool clean_up:1;
48
49 /* When our tasks are the only ones in this group */
50 bool only_us:1;
51
52 /* Inherit parameters from parent group */
53 bool inherit:1;
8e274523
LP
54};
55
56int cgroup_bonding_realize(CGroupBonding *b);
57int cgroup_bonding_realize_list(CGroupBonding *first);
58
59void cgroup_bonding_free(CGroupBonding *b);
60void cgroup_bonding_free_list(CGroupBonding *first);
61
62int cgroup_bonding_install(CGroupBonding *b, pid_t pid);
63int cgroup_bonding_install_list(CGroupBonding *first, pid_t pid);
64
65int cgroup_bonding_kill(CGroupBonding *b, int sig);
66int cgroup_bonding_kill_list(CGroupBonding *first, int sig);
67
68int cgroup_bonding_is_empty(CGroupBonding *b);
69int cgroup_bonding_is_empty_list(CGroupBonding *first);
70
71CGroupBonding *cgroup_bonding_find_list(CGroupBonding *first, const char *controller);
72
6dde1f33
LP
73char *cgroup_bonding_to_string(CGroupBonding *b);
74
8e274523
LP
75#include "manager.h"
76
77int manager_setup_cgroup(Manager *m);
a16e1123 78int manager_shutdown_cgroup(Manager *m, bool delete);
8e274523
LP
79
80int cgroup_notify_empty(Manager *m, const char *group);
81
82#endif