]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/cgroup.h
service: when after startup only one process is in a service's cgroup, assume it...
[thirdparty/systemd.git] / src / cgroup.h
CommitLineData
03467c88 1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
8e274523
LP
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
8e274523
LP
25typedef struct CGroupBonding CGroupBonding;
26
27#include "unit.h"
28
29/* Binds a cgroup to a name */
30struct CGroupBonding {
31 char *controller;
32 char *path;
33
34 Unit *unit;
35
9d58f1db
LP
36 /* For the Unit::cgroup_bondings list */
37 LIST_FIELDS(CGroupBonding, by_unit);
38
39 /* For the Manager::cgroup_bondings hashmap */
40 LIST_FIELDS(CGroupBonding, by_path);
41
8e274523
LP
42 /* When shutting down, remove cgroup? */
43 bool clean_up:1;
44
45 /* When our tasks are the only ones in this group */
46 bool only_us:1;
8c6db833
LP
47
48 /* This cgroup is realized */
49 bool realized:1;
8e274523
LP
50};
51
52int cgroup_bonding_realize(CGroupBonding *b);
53int cgroup_bonding_realize_list(CGroupBonding *first);
54
55void cgroup_bonding_free(CGroupBonding *b);
56void cgroup_bonding_free_list(CGroupBonding *first);
57
58int cgroup_bonding_install(CGroupBonding *b, pid_t pid);
59int cgroup_bonding_install_list(CGroupBonding *first, pid_t pid);
60
ca949c9d
LP
61int cgroup_bonding_kill(CGroupBonding *b, int sig, Set *s);
62int cgroup_bonding_kill_list(CGroupBonding *first, int sig, Set *s);
8e274523 63
fb385181
LP
64void cgroup_bonding_trim(CGroupBonding *first, bool delete_root);
65void cgroup_bonding_trim_list(CGroupBonding *first, bool delete_root);
66
8e274523
LP
67int cgroup_bonding_is_empty(CGroupBonding *b);
68int cgroup_bonding_is_empty_list(CGroupBonding *first);
69
70CGroupBonding *cgroup_bonding_find_list(CGroupBonding *first, const char *controller);
71
6dde1f33
LP
72char *cgroup_bonding_to_string(CGroupBonding *b);
73
4fbf50b3
LP
74pid_t cgroup_bonding_search_main_pid(CGroupBonding *b);
75pid_t cgroup_bonding_search_main_pid_list(CGroupBonding *b);
76
8e274523
LP
77#include "manager.h"
78
79int manager_setup_cgroup(Manager *m);
c6c18be3 80void manager_shutdown_cgroup(Manager *m, bool delete);
8e274523
LP
81
82int cgroup_notify_empty(Manager *m, const char *group);
83
8c47c732
LP
84Unit* cgroup_unit_by_pid(Manager *m, pid_t pid);
85
8e274523 86#endif