X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Flogin%2Flogind-user.h;h=b30e7d60c23bf6600816237a59e2a313e2f47cac;hp=de7ba6d57e034f48710a56f7d07c367f3a248d43;hb=dfc15f0ea42513f256e636ee78991e637b67be34;hpb=cc3773810855956bad92337cee8fa193584ab62e diff --git a/src/login/logind-user.h b/src/login/logind-user.h index de7ba6d57..b30e7d60c 100644 --- a/src/login/logind-user.h +++ b/src/login/logind-user.h @@ -24,9 +24,7 @@ typedef struct User User; #include "list.h" -#include "util.h" #include "logind.h" -#include "logind-session.h" typedef enum UserState { USER_OFFLINE, /* Not logged in at all */ @@ -49,11 +47,17 @@ struct User { char *state_file; char *runtime_path; + /* These are always NULL, and here just for logind-user-dbus.c + to easily provide a NULL value for the user's service and + slice properties. */ char *service; char *slice; +/// UNNEEDED (and unsupported) by elogind +#if 0 char *service_job; char *slice_job; +#endif // 0 Session *display; @@ -61,7 +65,7 @@ struct User { bool in_gc_queue:1; bool started:1; - bool closing:1; + bool stopping:1; LIST_HEAD(Session, sessions); LIST_FIELDS(User, gc_queue); @@ -72,17 +76,19 @@ void user_free(User *u); bool user_check_gc(User *u, bool drop_not_started); void user_add_to_gc_queue(User *u); int user_start(User *u); -int user_stop(User *u); +int user_stop(User *u, bool force); int user_finalize(User *u); UserState user_get_state(User *u); int user_get_idle_hint(User *u, dual_timestamp *t); int user_save(User *u); int user_load(User *u); int user_kill(User *u, int signo); +int user_check_linger_file(User *u); +void user_elect_display(User *u); extern const sd_bus_vtable user_vtable[]; -int user_node_enumerator(sd_bus *bus, const char *path, char ***nodes, void *userdata); -int user_object_find(sd_bus *bus, const char *path, const char *interface, void **found, void *userdata); +int user_node_enumerator(sd_bus *bus, const char *path, void *userdata, char ***nodes, sd_bus_error *error); +int user_object_find(sd_bus *bus, const char *path, const char *interface, void *userdata, void **found, sd_bus_error *error); char *user_bus_path(User *s); int user_send_signal(User *u, bool new_user); @@ -90,3 +96,6 @@ int user_send_changed(User *u, const char *properties, ...) _sentinel_; const char* user_state_to_string(UserState s) _const_; UserState user_state_from_string(const char *s) _pure_; + +int bus_user_method_terminate(sd_bus_message *message, void *userdata, sd_bus_error *error); +int bus_user_method_kill(sd_bus_message *message, void *userdata, sd_bus_error *error);