[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH RFC 1/7] include/sysemu/os-posix.h: move *daemonize* declarat
From: |
Eric Blake |
Subject: |
Re: [PATCH RFC 1/7] include/sysemu/os-posix.h: move *daemonize* declaration together |
Date: |
Tue, 15 Aug 2023 11:22:59 -0500 |
User-agent: |
NeoMutt/20230517 |
On Sat, Aug 12, 2023 at 03:47:55PM +0300, Michael Tokarev wrote:
> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
> ---
> include/sysemu/os-posix.h | 5 ++---
> 1 file changed, 2 insertions(+), 3 deletions(-)
Reviewed-by: Eric Blake <eblake@redhat.com>
>
> diff --git a/include/sysemu/os-posix.h b/include/sysemu/os-posix.h
> index 1030d39904..65b9c94e91 100644
> --- a/include/sysemu/os-posix.h
> +++ b/include/sysemu/os-posix.h
> @@ -47,13 +47,12 @@ void os_set_line_buffering(void);
> void os_setup_early_signal_handling(void);
> void os_set_proc_name(const char *s);
> void os_setup_signal_handling(void);
> +int os_set_daemonize(bool d);
> +bool is_daemonized(void);
> void os_daemonize(void);
> void os_setup_post(void);
> int os_mlock(void);
>
> -int os_set_daemonize(bool d);
> -bool is_daemonized(void);
> -
> /**
> * qemu_alloc_stack:
> * @sz: pointer to a size_t holding the requested usable stack size
> --
> 2.39.2
>
>
--
Eric Blake, Principal Software Engineer
Red Hat, Inc.
Virtualization: qemu.org | libguestfs.org
- [PATCH RFC 0/7] move softmmu options processing from os-posix.c to vl.c, Michael Tokarev, 2023/08/12
- [PATCH RFC 1/7] include/sysemu/os-posix.h: move *daemonize* declaration together, Michael Tokarev, 2023/08/12
- Re: [PATCH RFC 1/7] include/sysemu/os-posix.h: move *daemonize* declaration together,
Eric Blake <=
- [PATCH RFC 2/7] os-posix: create and export os_set_runas(), Michael Tokarev, 2023/08/12
- [PATCH RFC 3/7] os-posix.c: create and export os_set_chroot(), Michael Tokarev, 2023/08/12
- [PATCH RFC 5/7] softmmu/vl.c: inline include/qemu/qemu-options.h into vl.c, Michael Tokarev, 2023/08/12
- [PATCH RFC 7/7] util/async-teardown.c: move to softmmu/, only build it when system build is requested, Michael Tokarev, 2023/08/12
- [PATCH RFC 4/7] os-posix.c, softmmu/vl.c: move os_parse_cmd_args() into qemu_init(), Michael Tokarev, 2023/08/12