diff options
| author | David CARLIER <devnexen@gmail.com> | 2020-07-13 14:36:10 +0100 |
|---|---|---|
| committer | Peter Maydell <peter.maydell@linaro.org> | 2020-07-13 14:36:10 +0100 |
| commit | 81b7b1e21d5da37faef1dbb5404f3adae7e68ac2 (patch) | |
| tree | 2958d26573d7275927023be1dcca2c9a99347d53 | |
| parent | 652a46ebba970017c7a23767dcc983265cdb8eb7 (diff) | |
| download | focaccia-qemu-81b7b1e21d5da37faef1dbb5404f3adae7e68ac2.tar.gz focaccia-qemu-81b7b1e21d5da37faef1dbb5404f3adae7e68ac2.zip | |
util/compatfd.c: Only include <sys/syscall.h> if CONFIG_SIGNALFD
util/compatfd.c includes <sys/syscall.h> so that the CONFIG_SIGNALFD code can use SYS_signalfd. Guard the #include with CONFIG_SIGNALFD to avoid portability issues on hosts like Haiku which do not provide that header file. Signed-off-by: David Carlier <devnexen@gmail.com> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Message-id: 20200703145614.16684-8-peter.maydell@linaro.org [PMM: Expanded commit message] Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
| -rw-r--r-- | util/compatfd.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/util/compatfd.c b/util/compatfd.c index c296f55d14..ee47dd8089 100644 --- a/util/compatfd.c +++ b/util/compatfd.c @@ -16,7 +16,9 @@ #include "qemu/osdep.h" #include "qemu/thread.h" +#if defined(CONFIG_SIGNALFD) #include <sys/syscall.h> +#endif struct sigfd_compat_info { |