diff options
| author | Anders Carlsson <andersca@codefactory.se> | 2003-08-09 11:33:48 +0000 | 
|---|---|---|
| committer | Anders Carlsson <andersca@codefactory.se> | 2003-08-09 11:33:48 +0000 | 
| commit | 24f79b9a545b94dbbe227e6be7915746ce7e8fc3 (patch) | |
| tree | 9a2b96bb869d131d729e0cd0b02cfa820b8fa98d | |
| parent | 7fe37600bd572c3acec1f0e098ece42ca19c4ab7 (diff) | |
2003-08-09  Anders Carlsson  <andersca@codefactory.se>
	* doc/dbus-specification.sgml:
	Add activation reply values.
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | doc/dbus-specification.sgml | 34 | 
2 files changed, 33 insertions, 6 deletions
| @@ -1,3 +1,8 @@ +2003-08-09  Anders Carlsson  <andersca@codefactory.se> + +	* doc/dbus-specification.sgml: +	Add activation reply values. +	  2003-08-05  Havoc Pennington  <hp@redhat.com>  	* configure.in: 0.12 diff --git a/doc/dbus-specification.sgml b/doc/dbus-specification.sgml index 68a71cec..4ab5291a 100644 --- a/doc/dbus-specification.sgml +++ b/doc/dbus-specification.sgml @@ -1822,22 +1822,44 @@                <row>                  <entry>0</entry>                  <entry>UINT32</entry> -                <entry>Result code; DBUS_ACTIVATION_REPLY_ACTIVATED if -                the service was activated successfully or -                DBUS_ACTIVATION_REPLY_ALREADY_ACTIVE if the service is -                already active.</entry> +                <entry>Return value</entry>                </row>              </tbody>            </tgroup>          </informaltable> -        </para> -        <para>            Tries to launch the executable associated with a service. For more information, see <xref linkend="message-bus-activation">.              [FIXME need semantics in much more detail here; for example,               if I activate a service then send it a message, is the message               queued for the new service or is there a race]          </para> +        <para> +          The return value can be one of the following values: +    <informaltable> +            <tgroup cols=3> +              <thead> +                <row> +                  <entry>Identifier</entry> +                  <entry>Value</entry> +                  <entry>Description</entry> +                </row> +              </thead> +              <tbody> +	        <row> +                  <entry>DBUS_ACTIVATION_REPLY_ACTIVATED</entry> +                  <entry>0x0</entry> +                  <entry>The service was activated successfully.</entry> +                </row> +                <row> +                  <entry>DBUS_ACTIVATION_REPLY_ALREADY_ACTIVE</entry> +                  <entry>0x1</entry> +                  <entry>The service is already active.</entry> +                </row> +              </tbody> +             </tgroup> +           </informaltable> +        </para> +        </sect3>        <sect3 id="bus-messages-out-of-memory"> | 
