Re: [PATCH v2 01/25] fifo32: add peek function

2024-10-09 Thread Mark Cave-Ayland
On 08/10/2024 18:25, Octavian Purdila wrote: On Tue, Oct 8, 2024 at 4:27 AM Mark Cave-Ayland wrote: On 08/10/2024 02:18, Octavian Purdila wrote: Add fifo32_peek() that returns the first element from the queue without popping it. Signed-off-by: Octavian Purdila --- include/qemu/fifo32.h

Re: [PATCH v2 01/25] fifo32: add peek function

2024-10-08 Thread Octavian Purdila
On Tue, Oct 8, 2024 at 4:27 AM Mark Cave-Ayland wrote: > > On 08/10/2024 02:18, Octavian Purdila wrote: > > > Add fifo32_peek() that returns the first element from the queue > > without popping it. > > > > Signed-off-by: Octavian Purdila > > --- > > include/qemu/fifo32.h | 28 ++

Re: [PATCH v2 01/25] fifo32: add peek function

2024-10-08 Thread Mark Cave-Ayland
On 08/10/2024 02:18, Octavian Purdila wrote: Add fifo32_peek() that returns the first element from the queue without popping it. Signed-off-by: Octavian Purdila --- include/qemu/fifo32.h | 28 1 file changed, 28 insertions(+) diff --git a/include/qemu/fifo32.h

[PATCH v2 01/25] fifo32: add peek function

2024-10-07 Thread Octavian Purdila
Add fifo32_peek() that returns the first element from the queue without popping it. Signed-off-by: Octavian Purdila --- include/qemu/fifo32.h | 28 1 file changed, 28 insertions(+) diff --git a/include/qemu/fifo32.h b/include/qemu/fifo32.h index 4e9fd1b5ef..9de18073