qemu-trivial
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH 4/9] libvhost-user: Include poll.h instead of sys/poll.h


From: Thomas Huth
Subject: Re: [PATCH 4/9] libvhost-user: Include poll.h instead of sys/poll.h
Date: Wed, 13 Jan 2021 08:08:33 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.4.0

On 21/12/2020 01.53, Jiaxun Yang wrote:
Musl libc complains about it's wrong usage.

In file included from ../subprojects/libvhost-user/libvhost-user.h:20,
                  from ../subprojects/libvhost-user/libvhost-user-glib.h:19,
                  from ../subprojects/libvhost-user/libvhost-user-glib.c:15:
/usr/include/sys/poll.h:1:2: error: #warning redirecting incorrect #include 
<sys/poll.h> to <poll.h> [-Werror=cpp]
     1 | #warning redirecting incorrect #include <sys/poll.h> to <poll.h>
       |  ^~~~~~~

Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
---
  subprojects/libvhost-user/libvhost-user.h | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/subprojects/libvhost-user/libvhost-user.h 
b/subprojects/libvhost-user/libvhost-user.h
index 7d47f1364a..3d13dfadde 100644
--- a/subprojects/libvhost-user/libvhost-user.h
+++ b/subprojects/libvhost-user/libvhost-user.h
@@ -17,7 +17,7 @@
  #include <stdint.h>
  #include <stdbool.h>
  #include <stddef.h>
-#include <sys/poll.h>
+#include <poll.h>
  #include <linux/vhost.h>
  #include <pthread.h>
  #include "standard-headers/linux/virtio_ring.h"


Reviewed-by: Thomas Huth <thuth@redhat.com>




reply via email to

[Prev in Thread] Current Thread [Next in Thread]