diff options
Diffstat (limited to 'os-posix.c')
-rw-r--r-- | os-posix.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/os-posix.c b/os-posix.c index 79fa2288e4..eabccb8fe0 100644 --- a/os-posix.c +++ b/os-posix.c @@ -360,3 +360,8 @@ int qemu_create_pidfile(const char *filename) /* keep pidfile open & locked forever */ return 0; } + +bool is_daemonized(void) +{ + return daemonize; +} |