OSDN Git Service

util/main-loop: Introduce the main loop into QOM
authorNicolas Saenz Julienne <nsaenzju@redhat.com>
Mon, 25 Apr 2022 07:57:22 +0000 (09:57 +0200)
committerStefan Hajnoczi <stefanha@redhat.com>
Mon, 9 May 2022 09:43:23 +0000 (10:43 +0100)
commit70ac26b9e5ca8374bb3ef3f30b871726673c9f27
tree5bd929a72c3e414ab5323da317ef3895cb2c2fbb
parent7d5983e3c8c40b1d0668faba31d79905c4fadd7d
util/main-loop: Introduce the main loop into QOM

'event-loop-base' provides basic property handling for all 'AioContext'
based event loops. So let's define a new 'MainLoopClass' that inherits
from it. This will permit tweaking the main loop's properties through
qapi as well as through the command line using the '-object' keyword[1].
Only one instance of 'MainLoopClass' might be created at any time.

'EventLoopBaseClass' learns a new callback, 'can_be_deleted()' so as to
mark 'MainLoop' as non-deletable.

[1] For example:
      -object main-loop,id=main-loop,aio-max-batch=<value>

Signed-off-by: Nicolas Saenz Julienne <nsaenzju@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Acked-by: Markus Armbruster <armbru@redhat.com>
Message-id: 20220425075723.20019-3-nsaenzju@redhat.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
event-loop-base.c
include/qemu/main-loop.h
include/sysemu/event-loop-base.h
meson.build
qapi/qom.json
util/main-loop.c