chiark / gitweb /
manager: fix conflicting job check
[elogind.git] / src / cgroup-util.h
1 /*-*- Mode: C; c-basic-offset: 8 -*-*/
2
3 #ifndef foocgrouputilhfoo
4 #define foocgrouputilhfoo
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 <sys/types.h>
26 #include <stdio.h>
27 #include <dirent.h>
28
29 #include "set.h"
30
31 #define SYSTEMD_CGROUP_CONTROLLER "name=systemd"
32
33 int cg_enumerate_processes(const char *controller, const char *path, FILE **_f);
34 int cg_enumerate_tasks(const char *controller, const char *path, FILE **_f);
35 int cg_read_pid(FILE *f, pid_t *_pid);
36
37 int cg_enumerate_subgroups(const char *controller, const char *path, DIR **_d);
38 int cg_read_subgroup(DIR *d, char **fn);
39
40 int cg_kill(const char *controller, const char *path, int sig, bool ignore_self);
41 int cg_kill_recursive(const char *controller, const char *path, int sig, bool ignore_self, bool remove);
42 int cg_kill_recursive_and_wait(const char *controller, const char *path, bool remove);
43
44 int cg_migrate(const char *controller, const char *from, const char *to, bool ignore_self);
45 int cg_migrate_recursive(const char *controller, const char *from, const char *to, bool ignore_self, bool remove);
46
47 int cg_split_spec(const char *spec, char **controller, char **path);
48 int cg_join_spec(const char *controller, const char *path, char **spec);
49 int cg_fix_path(const char *path, char **result);
50
51 int cg_get_path(const char *controller, const char *path, const char *suffix, char **fs);
52 int cg_get_by_pid(const char *controller, pid_t pid, char **path);
53
54 int cg_trim(const char *controller, const char *path, bool delete_root);
55
56 int cg_rmdir(const char *controller, const char *path);
57 int cg_delete(const char *controller, const char *path);
58
59 int cg_create(const char *controller, const char *path);
60 int cg_attach(const char *controller, const char *path, pid_t pid);
61 int cg_create_and_attach(const char *controller, const char *path, pid_t pid);
62
63 int cg_set_group_access(const char *controller, const char *path, mode_t mode, uid_t uid, gid_t gid);
64 int cg_set_task_access(const char *controller, const char *path, mode_t mode, uid_t uid, gid_t gid);
65
66 int cg_install_release_agent(const char *controller, const char *agent);
67
68 int cg_is_empty(const char *controller, const char *path, bool ignore_self);
69 int cg_is_empty_recursive(const char *controller, const char *path, bool ignore_self);
70
71 #endif