chiark / gitweb /
unit: rename 'banned' load state to 'masked'
[elogind.git] / src / cgroup.h
index a7ca8abb063bcb6e35fd7081369babf48aa90f08..e38d7e79e6f3283702c67266b3ae87a4ce4c0987 100644 (file)
@@ -1,4 +1,4 @@
-/*-*- Mode: C; c-basic-offset: 8 -*-*/
+/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
 
 #ifndef foocgrouphfoo
 #define foocgrouphfoo
@@ -26,8 +26,6 @@ typedef struct CGroupBonding CGroupBonding;
 
 #include "unit.h"
 
-#define SYSTEMD_CGROUP_CONTROLLER "name=systemd"
-
 /* Binds a cgroup to a name */
 struct CGroupBonding {
         char *controller;
@@ -60,8 +58,8 @@ void cgroup_bonding_free_list(CGroupBonding *first);
 int cgroup_bonding_install(CGroupBonding *b, pid_t pid);
 int cgroup_bonding_install_list(CGroupBonding *first, pid_t pid);
 
-int cgroup_bonding_kill(CGroupBonding *b, int sig);
-int cgroup_bonding_kill_list(CGroupBonding *first, int sig);
+int cgroup_bonding_kill(CGroupBonding *b, int sig, Set *s);
+int cgroup_bonding_kill_list(CGroupBonding *first, int sig, Set *s);
 
 void cgroup_bonding_trim(CGroupBonding *first, bool delete_root);
 void cgroup_bonding_trim_list(CGroupBonding *first, bool delete_root);
@@ -76,7 +74,7 @@ char *cgroup_bonding_to_string(CGroupBonding *b);
 #include "manager.h"
 
 int manager_setup_cgroup(Manager *m);
-int manager_shutdown_cgroup(Manager *m);
+void manager_shutdown_cgroup(Manager *m, bool delete);
 
 int cgroup_notify_empty(Manager *m, const char *group);