Re: [PATCH] user: Mark cpu_loop() with noreturn attribute

2021-09-12 Thread Richard Henderson
On 9/4/21 5:04 PM, Philippe Mathieu-Daudé wrote: cpu_loop() never exits, so mark it with QEMU_NORETURN. Signed-off-by: Philippe Mathieu-Daudé --- bsd-user/qemu.h | 2 +- linux-user/qemu.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) Queued, thanks. r~

Re: [PATCH] user: Mark cpu_loop() with noreturn attribute

2021-09-05 Thread Bin Meng
On Sun, Sep 5, 2021 at 8:18 AM Philippe Mathieu-Daudé wrote: > > cpu_loop() never exits, so mark it with QEMU_NORETURN. > > Signed-off-by: Philippe Mathieu-Daudé > --- > bsd-user/qemu.h | 2 +- > linux-user/qemu.h | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > Reviewed-by: Bin M

Re: [PATCH] user: Mark cpu_loop() with noreturn attribute

2021-09-05 Thread Warner Losh
On Sat, Sep 4, 2021 at 6:04 PM Philippe Mathieu-Daudé wrote: > cpu_loop() never exits, so mark it with QEMU_NORETURN. > > Signed-off-by: Philippe Mathieu-Daudé > --- > bsd-user/qemu.h | 2 +- > linux-user/qemu.h | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > Reviewed-By: Warner

Re: [PATCH] user: Mark cpu_loop() with noreturn attribute

2021-09-05 Thread Richard Henderson
On 9/5/21 2:04 AM, Philippe Mathieu-Daudé wrote: cpu_loop() never exits, so mark it with QEMU_NORETURN. Signed-off-by: Philippe Mathieu-Daudé --- bsd-user/qemu.h | 2 +- linux-user/qemu.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) Reviewed-by: Richard Henderson r~

[PATCH] user: Mark cpu_loop() with noreturn attribute

2021-09-04 Thread Philippe Mathieu-Daudé
cpu_loop() never exits, so mark it with QEMU_NORETURN. Signed-off-by: Philippe Mathieu-Daudé --- bsd-user/qemu.h | 2 +- linux-user/qemu.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bsd-user/qemu.h b/bsd-user/qemu.h index c02e8a5ca1a..05bee7aefe5 100644 --- a/bsd-us