diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2018-07-27 09:56:43 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2018-08-02 15:49:45 +0200 |
commit | f00ded93e04af7a6a1d4502f7a0b87d65cf0cdb7 (patch) | |
tree | c5fbad613088a0fe3084a6f4cacbd1aa7261ede8 /man/sd_bus_default.xml | |
parent | man: add sd_bus_message_new(3) (diff) | |
download | systemd-f00ded93e04af7a6a1d4502f7a0b87d65cf0cdb7.tar.xz systemd-f00ded93e04af7a6a1d4502f7a0b87d65cf0cdb7.zip |
man: document *_with_description functions
Diffstat (limited to '')
-rw-r--r-- | man/sd_bus_default.xml | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/man/sd_bus_default.xml b/man/sd_bus_default.xml index 0d3532f3c7..73ad568b91 100644 --- a/man/sd_bus_default.xml +++ b/man/sd_bus_default.xml @@ -24,8 +24,11 @@ <refname>sd_bus_default_system</refname> <refname>sd_bus_open</refname> + <refname>sd_bus_open_with_description</refname> <refname>sd_bus_open_user</refname> + <refname>sd_bus_open_user_with_description</refname> <refname>sd_bus_open_system</refname> + <refname>sd_bus_open_system_with_description</refname> <refname>sd_bus_open_system_remote</refname> <refname>sd_bus_open_system_machine</refname> @@ -57,16 +60,34 @@ </funcprototype> <funcprototype> + <funcdef>int <function>sd_bus_open_with_description</function></funcdef> + <paramdef>sd_bus **<parameter>bus</parameter></paramdef> + <paramdef>const char *<parameter>description</parameter></paramdef> + </funcprototype> + + <funcprototype> <funcdef>int <function>sd_bus_open_user</function></funcdef> <paramdef>sd_bus **<parameter>bus</parameter></paramdef> </funcprototype> <funcprototype> + <funcdef>int <function>sd_bus_open_user_with_description</function></funcdef> + <paramdef>sd_bus **<parameter>bus</parameter></paramdef> + <paramdef>const char *<parameter>description</parameter></paramdef> + </funcprototype> + + <funcprototype> <funcdef>int <function>sd_bus_open_system</function></funcdef> <paramdef>sd_bus **<parameter>bus</parameter></paramdef> </funcprototype> <funcprototype> + <funcdef>int <function>sd_bus_open_system_with_description</function></funcdef> + <paramdef>sd_bus **<parameter>bus</parameter></paramdef> + <paramdef>const char *<parameter>description</parameter></paramdef> + </funcprototype> + + <funcprototype> <funcdef>int <function>sd_bus_open_system_remote</function></funcdef> <paramdef>sd_bus **<parameter>bus</parameter></paramdef> <paramdef>const char *<parameter>host</parameter></paramdef> @@ -126,6 +147,20 @@ <function>sd_bus_default_system()</function> to connect to the user or system buses.</para> + <para><function>sd_bus_open_with_description()</function>, + <function>sd_bus_open_user_with_description()</function>, and + <function>sd_bus_open_system_with_description()</function> are similar to + <function>sd_bus_open()</function>, <function>sd_bus_open_user()</function>, and + <function>sd_bus_open_system()</function>, but allow a description string to be set, see + <citerefentry><refentrytitle>sd_bus_set_description</refentrytitle><manvolnum>3</manvolnum></citerefentry>. + <parameter>description</parameter> may be <constant>NULL</constant>, in which case this function + is equivalent to <function>sd_bus_open()</function>. This description string is used in log + messages about the bus object, and including a "name" for the bus makes them easier to + understand. Some messages are emitted during bus initialization, hence using this function is + prefereable to setting the description later with + <function>sd_bus_open_with_description()</function>. The argument is copied internally and will + not be referenced after the function returns.</para> + <para>If the <varname>$DBUS_SESSION_BUS_ADDRESS</varname> environment variable is set (cf. <citerefentry project='man-pages'><refentrytitle>environ</refentrytitle><manvolnum>7</manvolnum></citerefentry>), |