Lines Matching +full:- +full:- +full:-

5    Copyright (c) 2014-2017 Red Hat Inc.
8 the COPYING file in the top-level directory.
15 ---------------------------------
16 QEMU is an event-driven program that can do several things at once using an
21 The default event loop is called the main loop (see ``main-loop.c``). It is
23 ``-object iothread,id=my-iothread``.
30 ------------------------------
39 QEMU's code historically was not thread-safe.
45 The experimental ``virtio-blk`` data-plane implementation has been benchmarked and
49 .. _how-to-program:
52 ----------------------------------
61 * Event notifiers (inter-thread signalling)
66 * LEGACY ``qemu_aio_set_fd_handler()`` - monitor a file descriptor
67 * LEGACY ``qemu_aio_set_event_notifier()`` - monitor an event notifier
68 * LEGACY ``timer_new_ms()`` - create a timer
69 * LEGACY ``qemu_bh_new()`` - create a BH
70 * LEGACY ``qemu_bh_new_guarded()`` - create a BH with a device re-entrancy guard
71 * LEGACY ``qemu_aio_wait()`` - run an event loop iteration
78 * ``aio_set_fd_handler()`` - monitor a file descriptor
79 * ``aio_set_event_notifier()`` - monitor an event notifier
80 * ``aio_timer_new()`` - create a timer
81 * ``aio_bh_new()`` - create a BH
82 * ``aio_bh_new_guarded()`` - create a BH with a device re-entrancy guard
83 * ``aio_poll()`` - run an event loop iteration
87 argument, which is used to check for and prevent re-entrancy problems. For
88 BHs associated with devices, the reentrancy-guard is contained in the
98 ---------------------------------------
104 are thread-safe. They can be used to trigger activity in an ``IOThread``.
113 ----------------------------------
134 Long-running jobs (usually in the form of coroutines) are often scheduled in