X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Flogin%2Flogind-session.h;h=c9af5ebe0d58a96b84cd6ba4e21d16950a885086;hp=939476af557d8ac7c732067458164d11f4fcad30;hb=9bb69af4f2823fdd30902f5ffd959e9b041feb53;hpb=92bd5ff3a062c3f9475b9d9d39b9335bfeb7705e diff --git a/src/login/logind-session.h b/src/login/logind-session.h index 939476af5..c9af5ebe0 100644 --- a/src/login/logind-session.h +++ b/src/login/logind-session.h @@ -54,6 +54,7 @@ typedef enum SessionType { SESSION_UNSPECIFIED, SESSION_TTY, SESSION_X11, + SESSION_WAYLAND, _SESSION_TYPE_MAX, _SESSION_TYPE_INVALID = -1 } SessionType; @@ -69,6 +70,7 @@ struct Session { Manager *manager; char *id; + unsigned int pos; SessionType type; SessionClass class; @@ -85,6 +87,7 @@ struct Session { char *remote_user; char *remote_host; char *service; + char *desktop; char *scope; char *scope_job; @@ -107,10 +110,12 @@ struct Session { bool in_gc_queue:1; bool started:1; - bool closing:1; + bool stopping:1; sd_bus_message *create_message; + sd_event_source *timer_event_source; + char *controller; Hashmap *devices; @@ -130,10 +135,10 @@ bool session_is_active(Session *s); int session_get_idle_hint(Session *s, dual_timestamp *t); void session_set_idle_hint(Session *s, bool b); int session_create_fifo(Session *s); -void session_remove_fifo(Session *s); int session_start(Session *s); -int session_stop(Session *s); +int session_stop(Session *s, bool force); int session_finalize(Session *s); +void session_release(Session *s); int session_save(Session *s); int session_load(Session *s); int session_kill(Session *s, KillWho who, int signo);