]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
kbase: eventloop: Fix path to referenced images
authorPeter Krempa <pkrempa@redhat.com>
Tue, 14 Feb 2023 13:38:46 +0000 (14:38 +0100)
committerPeter Krempa <pkrempa@redhat.com>
Wed, 15 Feb 2023 11:38:45 +0000 (12:38 +0100)
The images are referenced from '../images/' but the document is two
layers deep thus '../../images' needs to be used

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
docs/kbase/internals/eventloop.rst

index 856cabc85ffc36a314e5ea2226ad50ff33dd4c78..c7770614a1792a234cd2a58c79d1e5f273a53560 100644 (file)
@@ -23,7 +23,7 @@ desired function. If generalized, this is how many long running programs
 (daemons) work. Even those who are not waiting for direct user input and have no
 graphical interface. Such as Libvirt.
 
-.. image:: ../images/event_loop_simple.png
+.. image:: ../../images/event_loop_simple.png
    :alt: event loop
 
 In Libvirt this approach is used in combination with ``poll(2)`` as all the
@@ -57,7 +57,7 @@ a message event loop is blocked and for an outside observer unresponsive. This
 is not acceptable for Libvirt. Therefore we have came up with the following
 solution.
 
-.. image:: ../images/event_loop_worker.png
+.. image:: ../../images/event_loop_worker.png
    :alt: event loop
 
 The event loop does only necessary minimum and hand over message processing to