summaryrefslogtreecommitdiff
path: root/os-win32.c
diff options
context:
space:
mode:
authorJes Sorensen <Jes.Sorensen@redhat.com>2010-06-10 11:42:28 +0200
committerBlue Swirl <blauwirbel@gmail.com>2010-06-12 08:49:15 +0300
commiteb505be11b18b09c621dfb19a4e3b5f703c69eeb (patch)
tree697c03fb3cb72911f4418eea8411d6a1afb54049 /os-win32.c
parent0766379d4c58c5c1edc6adc414bfb25fc979b083 (diff)
downloadqemu-eb505be11b18b09c621dfb19a4e3b5f703c69eeb.tar.gz
Move daemonize handling to OS specific files
Move daemonize handling from vl.c to OS specific files. Provide dummy stubs for Win32. Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com> Acked-by: Juan Quintela <quintela@redhat.com> Acked-by: Richard Henderson <rth@redhat.com> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'os-win32.c')
-rw-r--r--os-win32.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/os-win32.c b/os-win32.c
index aefc535ed0..d98fd77c12 100644
--- a/os-win32.c
+++ b/os-win32.c
@@ -214,3 +214,8 @@ void os_parse_cmd_args(int index, const char *optarg)
{
return;
}
+
+void os_pidfile_error(void)
+{
+ fprintf(stderr, "Could not acquire pid file: %s\n", strerror(errno));
+}