diff options
author | Daniel P. Berrangé <berrange@redhat.com> | 2020-08-25 11:38:50 +0100 |
---|---|---|
committer | Eric Blake <eblake@redhat.com> | 2020-09-02 16:48:21 -0500 |
commit | eb705985f43d631438a318f1146eac61ae10d273 (patch) | |
tree | 0381749b3ba2a4e4b1c1d93d2150c948d525f7fa /qemu-nbd.c | |
parent | 6e64dd572aa548aa6664ed02c6901d691f6a10ba (diff) |
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.c | 5 |
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) { |