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=afdeed55d61f3d0301fb9523a3f903253158b893;hb=f4bad2bd2abe8ae260a99a5336145d11efe79892;hpb=81e0d95604bbdd884aa003de155d5a40debd071d diff --git a/man/sd_session_is_active.xml b/man/sd_session_is_active.xml index afdeed55d..a14286aea 100644 --- a/man/sd_session_is_active.xml +++ b/man/sd_session_is_active.xml @@ -8,16 +8,16 @@ Copyright 2010 Lennart Poettering systemd is free software; you can redistribute it and/or modify it - under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or + under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. systemd is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + Lesser General Public License for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the GNU Lesser General Public License along with systemd; If not, see . --> @@ -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