summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorPeter A. Bigot <pab@pabigot.com>2019-06-22 12:43:49 -0500
committerYu Watanabe <watanabe.yu+github@gmail.com>2019-06-23 04:13:41 +0900
commit94c4bbe50677af776de408058475a7cbce8e013b (patch)
tree324d631a43b6221b36ac8b1fb43d0cadac90c9ca /man
parent72bd85259b0ccc63b3d1492388535d4d96041f9b (diff)
downloadsystemd-94c4bbe50677af776de408058475a7cbce8e013b.tar.gz
man: fix references to VTABLE property flags
Diffstat (limited to 'man')
-rw-r--r--man/sd_bus_add_object_vtable.xml16
1 files changed, 8 insertions, 8 deletions
diff --git a/man/sd_bus_add_object_vtable.xml b/man/sd_bus_add_object_vtable.xml
index 1c222bc5f4..9d7e30a504 100644
--- a/man/sd_bus_add_object_vtable.xml
+++ b/man/sd_bus_add_object_vtable.xml
@@ -356,19 +356,19 @@
</varlistentry>
<varlistentry>
- <term><constant>SD_BUS_VTABLE_CONST</constant></term>
- <term><constant>SD_BUS_VTABLE_EMITS_CHANGE</constant></term>
- <term><constant>SD_BUS_VTABLE_EMITS_INVALIDATION</constant></term>
+ <term><constant>SD_BUS_VTABLE_PROPERTY_CONST</constant></term>
+ <term><constant>SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE</constant></term>
+ <term><constant>SD_BUS_VTABLE_PROPERTY_EMITS_INVALIDATION</constant></term>
<listitem><para>Those three flags correspond to different values of the
<constant>org.freedesktop.DBus.Property.EmitsChangedSignal</constant> annotation, which specifies
whether the <constant>org.freedesktop.DBus.Properties.PropertiesChanged</constant> signal is
- emitted whenever the property changes. <constant>SD_BUS_VTABLE_CONST</constant> corresponds to
+ emitted whenever the property changes. <constant>SD_BUS_VTABLE_PROPERTY_CONST</constant> corresponds to
<constant>const</constant> and means that the property never changes during the lifetime of the
object it belongs to, so no signal needs to be emitted.
- <constant>SD_BUS_VTABLE_EMITS_CHANGE</constant> corresponds to <constant>true</constant> and means
- that the signal is emitted. <constant>SD_BUS_VTABLE_EMITS_INVALIDATION</constant> corresponds to
- <constant>invalides</constant> and means that the signal is emitted, but the value is not included
+ <constant>SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE</constant> corresponds to <constant>true</constant> and means
+ that the signal is emitted. <constant>SD_BUS_VTABLE_PROPERTY_EMITS_INVALIDATION</constant> corresponds to
+ <constant>invalidates</constant> and means that the signal is emitted, but the value is not included
in the signal.</para>
</listitem>
</varlistentry>
@@ -378,7 +378,7 @@
<listitem><para>Mark this vtable property entry as requiring explicit request to for the value to
be shown (generally because the value is large or slow to calculate). This entry cannot be combined
- with <constant>SD_BUS_VTABLE_EMITS_CHANGE</constant>, and will not be shown in property listings by
+ with <constant>SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE</constant>, and will not be shown in property listings by
default (e.g. <command>busctl introspect</command>). This corresponds to the
<constant>org.freedesktop.systemd1.Explicit</constant> annotation in introspection data.</para>
</listitem>