diff options
author | 2024-07-22 13:25:01 +0200 | |
---|---|---|
committer | 2024-07-23 22:34:54 +0200 | |
commit | 06252bf5122f047ed5c14fb75f3167f11b882352 (patch) | |
tree | e952ab6e63bee8853a3a7d0be336208a46ce9c74 /ui/gtk.c | |
parent | util/fifo8: Rename fifo8_peek_buf() -> fifo8_peek_bufptr() (diff) | |
download | qemu-06252bf5122f047ed5c14fb75f3167f11b882352.tar.xz qemu-06252bf5122f047ed5c14fb75f3167f11b882352.zip |
util/fifo8: Rename fifo8_pop_buf() -> fifo8_pop_bufptr()
Since fifo8_pop_buf() return a const buffer (which points
directly into the FIFO backing store). Rename it using the
'bufptr' suffix to better reflect that it is a pointer to
the internal buffer that is being returned. This will help
differentiate with methods *copying* the FIFO data.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Reviewed-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Message-Id: <20240722160745.67904-6-philmd@linaro.org>
Diffstat (limited to 'ui/gtk.c')
-rw-r--r-- | ui/gtk.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1820,7 +1820,7 @@ static void gd_vc_send_chars(VirtualConsole *vc) const uint8_t *buf; uint32_t size; - buf = fifo8_pop_buf(&vc->vte.out_fifo, MIN(len, avail), &size); + buf = fifo8_pop_bufptr(&vc->vte.out_fifo, MIN(len, avail), &size); qemu_chr_be_write(vc->vte.chr, buf, size); len = qemu_chr_be_can_write(vc->vte.chr); avail -= size; |