os-posix: Add os_set_daemonize()
authorHanna Reitz <hreitz@redhat.com>
Thu, 3 Mar 2022 16:48:11 +0000 (17:48 +0100)
committerKevin Wolf <kwolf@redhat.com>
Fri, 4 Mar 2022 17:14:40 +0000 (18:14 +0100)
commitf22ac4727bfbdd7d54348b8bc6d307e94ad425f8
treee18f56c03a03e897180b6e46a24ba68f9aebf14a
parentd5d2b15ecf62c662985983ca065ddeeec48fd248
os-posix: Add os_set_daemonize()

The daemonizing functions in os-posix (os_daemonize() and
os_setup_post()) only daemonize the process if the static `daemonize`
variable is set.  Right now, it can only be set by os_parse_cmd_args().

In order to use os_daemonize() and os_setup_post() from the storage
daemon to have it be daemonized, we need some other way to set this
`daemonize` variable, because I would rather not tap into the system
emulator's arg-parsing code.  Therefore, this patch adds an
os_set_daemonize() function, which will return an error on os-win32
(because daemonizing is not supported there).

Signed-off-by: Hanna Reitz <hreitz@redhat.com>
Message-Id: <20220303164814.284974-2-hreitz@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
include/sysemu/os-posix.h
include/sysemu/os-win32.h
os-posix.c