chiark / gitweb /
logind: hook up PAM module with logind
[elogind.git] / src / logind.h
index e18a357c9a633091a61c7aacd01f08562b0ba7c0..7de8e3bcf8e5e2bed527ac81b3542f949df89bb6 100644 (file)
@@ -37,8 +37,8 @@
  * recreate VTs when disallocated
  * PAM rewrite
  * spawn user systemd
- * dbus API
  * direct client API
+ * subscribe to cgroup changes, fd HUP
  *
  * non-local X11 server
  * reboot/shutdown halt management
@@ -76,11 +76,13 @@ struct Manager {
         Seat *vtconsole;
 
         char *cgroup_path;
-        char **controllers, **reset_controllers;
+        char **controllers;
 
         char **kill_only_users, **kill_exclude_users;
 
         bool kill_user_processes;
+
+        unsigned long session_counter;
 };
 
 Manager *manager_new(void);
@@ -114,4 +116,6 @@ bool x11_display_is_local(const char *display);
 
 extern const DBusObjectPathVTable bus_manager_vtable;
 
+int manager_send_changed(Manager *manager, const char *properties);
+
 #endif