diff options
author | Stefan Weil | 2020-08-27 19:55:20 +0200 |
---|---|---|
committer | Laurent Vivier | 2020-09-01 12:07:52 +0200 |
commit | a275e9343ec54a5a6e305890963d8424b514b0ab (patch) | |
tree | 7b715ed0ff46eb88e667a3d4b4a93fc0c60e7881 /include/qemu/main-loop.h | |
parent | hw/display/vga:Remove redundant statement in vga_draw_graphic() (diff) | |
download | qemu-a275e9343ec54a5a6e305890963d8424b514b0ab.tar.gz qemu-a275e9343ec54a5a6e305890963d8424b514b0ab.tar.xz qemu-a275e9343ec54a5a6e305890963d8424b514b0ab.zip |
main-loop: Fix comment
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20200827175520.32355-1-sw@weilnetz.de>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'include/qemu/main-loop.h')
-rw-r--r-- | include/qemu/main-loop.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/qemu/main-loop.h b/include/qemu/main-loop.h index 8e98613656..d6892fd208 100644 --- a/include/qemu/main-loop.h +++ b/include/qemu/main-loop.h @@ -52,7 +52,7 @@ int qemu_init_main_loop(Error **errp); * repeatedly calls main_loop_wait(false). * * Main loop services include file descriptor callbacks, bottom halves - * and timers (defined in qemu-timer.h). Bottom halves are similar to timers + * and timers (defined in qemu/timer.h). Bottom halves are similar to timers * that execute immediately, but have a lower overhead and scheduling them * is wait-free, thread-safe and signal-safe. * |