summaryrefslogtreecommitdiffstats
path: root/qemu-nbd.c
diff options
context:
space:
mode:
authorDaniel P. Berrangé2020-08-25 12:38:50 +0200
committerEric Blake2020-09-02 23:48:21 +0200
commiteb705985f43d631438a318f1146eac61ae10d273 (patch)
tree0381749b3ba2a4e4b1c1d93d2150c948d525f7fa /qemu-nbd.c
parentnbd: skip SIGTERM handler if NBD device support is not built (diff)
downloadqemu-eb705985f43d631438a318f1146eac61ae10d273.tar.gz
qemu-eb705985f43d631438a318f1146eac61ae10d273.tar.xz
qemu-eb705985f43d631438a318f1146eac61ae10d273.zip
nbd: disable signals and forking on Windows builds
Disabling these parts are sufficient to get the qemu-nbd program compiling in a Windows build. Signed-off-by: Daniel P. Berrangé <berrange@redhat.com> Message-Id: <20200825103850.119911-4-berrange@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Signed-off-by: Eric Blake <eblake@redhat.com>
Diffstat (limited to 'qemu-nbd.c')
-rw-r--r--qemu-nbd.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/qemu-nbd.c b/qemu-nbd.c
index dc6ef089af..33476a1000 100644
--- a/qemu-nbd.c
+++ b/qemu-nbd.c
@@ -899,6 +899,7 @@ int main(int argc, char **argv)
#endif
if ((device && !verbose) || fork_process) {
+#ifndef WIN32
int stderr_fd[2];
pid_t pid;
int ret;
@@ -962,6 +963,10 @@ int main(int argc, char **argv)
*/
exit(errors);
}
+#else /* WIN32 */
+ error_report("Unable to fork into background on Windows hosts");
+ exit(EXIT_FAILURE);
+#endif /* WIN32 */
}
if (device != NULL && sockpath == NULL) {