chiark / gitweb /
e729a653b7dbb8374f19f9d83badd40d1c0fbc29
[elogind.git] / man / sd_seat_get_active.xml
1 <?xml version='1.0'?> <!--*-nxml-*-->
2 <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
3         "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
4
5 <!--
6   This file is part of systemd.
7
8   Copyright 2010 Lennart Poettering
9
10   systemd is free software; you can redistribute it and/or modify it
11   under the terms of the GNU General Public License as published by
12   the Free Software Foundation; either version 2 of the License, or
13   (at your option) any later version.
14
15   systemd is distributed in the hope that it will be useful, but
16   WITHOUT ANY WARRANTY; without even the implied warranty of
17   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18   General Public License for more details.
19
20   You should have received a copy of the GNU General Public License
21   along with systemd; If not, see <http://www.gnu.org/licenses/>.
22 -->
23
24 <refentry id="sd_seat_get_active">
25
26         <refentryinfo>
27                 <title>sd_seat_get_active</title>
28                 <productname>systemd</productname>
29
30                 <authorgroup>
31                         <author>
32                                 <contrib>Developer</contrib>
33                                 <firstname>Lennart</firstname>
34                                 <surname>Poettering</surname>
35                                 <email>lennart@poettering.net</email>
36                         </author>
37                 </authorgroup>
38         </refentryinfo>
39
40         <refmeta>
41                 <refentrytitle>sd_seat_get_active</refentrytitle>
42                 <manvolnum>3</manvolnum>
43         </refmeta>
44
45         <refnamediv>
46                 <refname>sd_seat_get_active</refname>
47                 <refname>sd_seat_get_sessions</refname>
48                 <refname>sd_seat_can_multi_session</refname>
49                 <refpurpose>Determine state of a specific seat</refpurpose>
50         </refnamediv>
51
52         <refsynopsisdiv>
53                 <funcsynopsis>
54                         <funcsynopsisinfo>#include &lt;systemd/sd-login.h&gt;</funcsynopsisinfo>
55
56                         <funcprototype>
57                                 <funcdef>int <function>sd_seat_get_active</function></funcdef>
58                                 <paramdef>const char* <parameter>seat</parameter></paramdef>
59                                 <paramdef>char** <parameter>session</parameter></paramdef>
60                                 <paramdef>uid_t* <parameter>uid</parameter></paramdef>
61                         </funcprototype>
62
63                         <funcprototype>
64                                 <funcdef>int <function>sd_seat_get_sessions</function></funcdef>
65                                 <paramdef>const char* <parameter>seat</parameter></paramdef>
66                                 <paramdef>char*** <parameter>sessions</parameter></paramdef>
67                                 <paramdef>uid_t** <parameter>uid</parameter></paramdef>
68                                 <paramdef>unsigned* <parameter>n_uids</parameter></paramdef>
69                         </funcprototype>
70
71                         <funcprototype>
72                                 <funcdef>int <function>sd_seat_can_multi_session</function></funcdef>
73                                 <paramdef>const char* <parameter>session</parameter></paramdef>
74                         </funcprototype>
75                 </funcsynopsis>
76         </refsynopsisdiv>
77
78         <refsect1>
79                 <title>Description</title>
80
81                 <para><function>sd_seat_get_active()</function> may be
82                 used to determine which session is currently active on
83                 a seat, if there is any. Returns the session
84                 identifier and the user identifier of the Unix user
85                 the session is belonging to. Either the session or the
86                 user identifier parameter can be be passed NULL, in
87                 case only one of the parameters shall be queried. The
88                 returned string needs to be freed with the libc
89                 <citerefentry><refentrytitle>free</refentrytitle><manvolnum>3</manvolnum></citerefentry>
90                 call after use.</para>
91
92                 <para><function>sd_seat_get_sessions()</function> may
93                 be used to determine all sessions on the specified
94                 seat. Returns two arrays, one (NULL terminated) with
95                 the session identifiers of the sessions and one with
96                 the user identifiers of the Unix users the sessions
97                 belong to. An additional parameter may be used to
98                 return the number of entries in the latter array. The
99                 two arrays and the latter parameter may be passed as
100                 NULL in case these values need not to be
101                 determined. The arrays and the strings referenced by
102                 them need to be freed with the libc
103                 <citerefentry><refentrytitle>free</refentrytitle><manvolnum>3</manvolnum></citerefentry>
104                 call after use.</para>
105
106                 <para><function>sd_seat_can_multi_session()</function>
107                 may be used to determine whether a specific seat is
108                 capable of multi-session, i.e. allows multiple login
109                 sessions in parallel (whith only one being active at a
110                 time).</para>
111         </refsect1>
112
113         <refsect1>
114                 <title>Return Value</title>
115
116                 <para> On success
117                 <function>sd_seat_get_active()</function> return
118                 return 0 or a positive integer. On success
119                 <function>sd_seat_get_sessions()</function> returns
120                 the number of entries in the session identifier
121                 array. If the test succeeds
122                 <function>sd_seat_can_multi_session</function> returns
123                 a positive integer, if it fails 0. On failure, these
124                 calls return a negative errno-style error code.</para>
125         </refsect1>
126
127         <refsect1>
128                 <title>Notes</title>
129
130                 <para>The <function>sd_seat_get_active()</function>,
131                 <function>sd_seat_get_sessions()</function>, and
132                 <function>sd_seat_can_multi_session()</function> interfaces
133                 are available as shared library, which can be compiled
134                 and linked to with the
135                 <literal>libsystemd-login</literal>
136                 <citerefentry><refentrytitle>pkg-config</refentrytitle><manvolnum>1</manvolnum></citerefentry>
137                 file.</para>
138         </refsect1>
139
140         <refsect1>
141                 <title>See Also</title>
142
143                 <para>
144                         <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
145                         <citerefentry><refentrytitle>sd-login</refentrytitle><manvolnum>7</manvolnum></citerefentry>,
146                         <citerefentry><refentrytitle>sd_session_get_seat</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
147                 </para>
148         </refsect1>
149
150 </refentry>