Re: [PATCH 8/9] fifo8: introduce fifo8_peek() function

2024-08-30 Thread Octavian Purdila
On Wed, Aug 28, 2024 at 5:23 AM Mark Cave-Ayland wrote: > > This allows uses to peek the byte at the current head of the FIFO. > > Signed-off-by: Mark Cave-Ayland Reviewed-by: Octavian Purdila > --- > include/qemu/fifo8.h | 11 +++ > util/fifo8.c | 6 ++ > 2 files changed

Re: [PATCH 8/9] fifo8: introduce fifo8_peek() function

2024-08-29 Thread Alistair Francis
On Wed, Aug 28, 2024 at 10:26 PM Mark Cave-Ayland wrote: > > This allows uses to peek the byte at the current head of the FIFO. > > Signed-off-by: Mark Cave-Ayland Reviewed-by: Alistair Francis Alistair > --- > include/qemu/fifo8.h | 11 +++ > util/fifo8.c | 6 ++ > 2 fi

[PATCH 8/9] fifo8: introduce fifo8_peek() function

2024-08-28 Thread Mark Cave-Ayland
This allows uses to peek the byte at the current head of the FIFO. Signed-off-by: Mark Cave-Ayland --- include/qemu/fifo8.h | 11 +++ util/fifo8.c | 6 ++ 2 files changed, 17 insertions(+) diff --git a/include/qemu/fifo8.h b/include/qemu/fifo8.h index d09984b146..4f768d4ee3