X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=man%2Fsd_session_is_active.xml;h=a14286aeabf4bf3387d5259a05f465f0a7e6ecee;hp=45151aaaf91cb6c362dec1c747764bae58252f6a;hb=f4bad2bd2abe8ae260a99a5336145d11efe79892;hpb=5430f7f2bc7330f3088b894166bf3524a067e3d8 diff --git a/man/sd_session_is_active.xml b/man/sd_session_is_active.xml index 45151aaaf..a14286aea 100644 --- a/man/sd_session_is_active.xml +++ b/man/sd_session_is_active.xml @@ -44,6 +44,7 @@ sd_session_is_active + sd_session_get_state sd_session_get_uid sd_session_get_seat sd_session_get_service @@ -62,6 +63,12 @@ const char* session + + int sd_session_get_state + const char* session + char** state + + int sd_session_get_uid const char* session @@ -109,6 +116,25 @@ (i.e. currently in the foreground and available for user input) or not. + sd_session_get_state() may + be used to determine the state of the session + identified by the specified session identifier. The + following states are currently known: + online (session logged in, but + session not active, i.e. not in the foreground), + active (session logged in and + active, i.e. in the foreground), + closing (session nominally logged + out, but some processes belonging to it are still + around). In the future additional states might be + defined, client code should be written to be robust in + regards to additional state strings being + returned. This function is a more generic version of + sd_session_is_active(). The returned + string needs to be freed with the libc + free3 + call after use. + sd_session_get_uid() may be used to determine the user identifier of the Unix user the session identified by the specified session identifier belongs @@ -172,9 +198,13 @@ If the test succeeds sd_session_is_active() returns a positive integer, if it fails 0. On success + sd_session_get_state(), sd_session_get_uid(), - sd_session_get_service() and - sd_session_get_seat() return 0 or + sd_session_get_seat(), + sd_session_get_service(), + sd_session_get_type(), + sd_session_get_class() and + sd_session_get_display() return 0 or a positive integer. On failure, these calls return a negative errno-style error code. @@ -183,9 +213,13 @@ Notes The sd_session_is_active(), + sd_session_get_state(), sd_session_get_uid(), - sd_session_get_service() and - sd_session_get_seat() interfaces + sd_session_get_seat(), + sd_session_get_service(), + sd_session_get_type(), + sd_session_get_class() and + sd_session_get_display() interfaces are available as shared library, which can be compiled and linked to with the libsystemd-login