chiark / gitweb /
Fedora: don't ship [Install] sections; these are enabled in the system configuration.
[elogind.git] / src / cgroup.h
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
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 typedef struct CGroupBonding CGroupBonding;
26
27 #include "unit.h"
28
29 /* Binds a cgroup to a name */
30 struct CGroupBonding {
31         char *controller;
32         char *path;
33
34         Unit *unit;
35
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
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;
47
48         /* This cgroup is realized */
49         bool realized:1;
50 };
51
52 int cgroup_bonding_realize(CGroupBonding *b);
53 int cgroup_bonding_realize_list(CGroupBonding *first);
54
55 void cgroup_bonding_free(CGroupBonding *b);
56 void cgroup_bonding_free_list(CGroupBonding *first);
57
58 int cgroup_bonding_install(CGroupBonding *b, pid_t pid);
59 int cgroup_bonding_install_list(CGroupBonding *first, pid_t pid);
60
61 int cgroup_bonding_kill(CGroupBonding *b, int sig, Set *s);
62 int cgroup_bonding_kill_list(CGroupBonding *first, int sig, Set *s);
63
64 void cgroup_bonding_trim(CGroupBonding *first, bool delete_root);
65 void cgroup_bonding_trim_list(CGroupBonding *first, bool delete_root);
66
67 int cgroup_bonding_is_empty(CGroupBonding *b);
68 int cgroup_bonding_is_empty_list(CGroupBonding *first);
69
70 CGroupBonding *cgroup_bonding_find_list(CGroupBonding *first, const char *controller);
71
72 char *cgroup_bonding_to_string(CGroupBonding *b);
73
74 pid_t cgroup_bonding_search_main_pid(CGroupBonding *b);
75 pid_t cgroup_bonding_search_main_pid_list(CGroupBonding *b);
76
77 #include "manager.h"
78
79 int manager_setup_cgroup(Manager *m);
80 void manager_shutdown_cgroup(Manager *m, bool delete);
81
82 int cgroup_notify_empty(Manager *m, const char *group);
83
84 Unit* cgroup_unit_by_pid(Manager *m, pid_t pid);
85
86 #endif