[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] tools: Use POSIX poll.h instead of sys/poll.h
commit 4703a9ba9bb0c9c2804813ffe0943177d5f96039 Author: Alistair Francis <alistair.francis@xxxxxxxxxx> AuthorDate: Mon Apr 17 14:33:10 2017 -0700 Commit: Wei Liu <wei.liu2@xxxxxxxxxx> CommitDate: Tue Apr 18 17:03:49 2017 +0100 tools: Use POSIX poll.h instead of sys/poll.h The POSIX spec specifies to use: #include <poll.h> instead of: #include <sys/poll.h> as seen here: http://pubs.opengroup.org/onlinepubs/009695399/functions/poll.html This removes the warning: #warning redirecting incorrect #include <sys/poll.h> to <poll.h> when building with the musl C-library. Signed-off-by: Alistair Francis <alistair.francis@xxxxxxxxxx> Acked-by: Wei Liu <wei.liu2@xxxxxxxxxx> Acked-by: Razvan Cojocaru <rcojocaru@xxxxxxxxxxxxxxx> Acked-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> Release-acked-by: Julien Grall <julien.grall@xxxxxxx> --- tools/libxl/libxl_internal.h | 2 +- tools/tests/xen-access/xen-access.c | 2 +- tools/xenstat/libxenstat/src/xenstat_qmp.c | 2 +- tools/xentrace/xentrace.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/libxl/libxl_internal.h b/tools/libxl/libxl_internal.h index be24b76..5d082c5 100644 --- a/tools/libxl/libxl_internal.h +++ b/tools/libxl/libxl_internal.h @@ -38,7 +38,7 @@ #include <ctype.h> #include <sys/mman.h> -#include <sys/poll.h> +#include <poll.h> #include <sys/select.h> #include <sys/stat.h> #include <sys/time.h> diff --git a/tools/tests/xen-access/xen-access.c b/tools/tests/xen-access/xen-access.c index ff4d289..238011e 100644 --- a/tools/tests/xen-access/xen-access.c +++ b/tools/tests/xen-access/xen-access.c @@ -36,7 +36,7 @@ #include <signal.h> #include <unistd.h> #include <sys/mman.h> -#include <sys/poll.h> +#include <poll.h> #include <xenctrl.h> #include <xenevtchn.h> diff --git a/tools/xenstat/libxenstat/src/xenstat_qmp.c b/tools/xenstat/libxenstat/src/xenstat_qmp.c index a87c937..3fda487 100644 --- a/tools/xenstat/libxenstat/src/xenstat_qmp.c +++ b/tools/xenstat/libxenstat/src/xenstat_qmp.c @@ -14,7 +14,7 @@ #include <fcntl.h> #include <sys/types.h> #include <sys/socket.h> -#include <sys/poll.h> +#include <poll.h> #include <sys/un.h> #include <stdlib.h> #include <string.h> diff --git a/tools/xentrace/xentrace.c b/tools/xentrace/xentrace.c index f09fe6c..364a6fd 100644 --- a/tools/xentrace/xentrace.c +++ b/tools/xentrace/xentrace.c @@ -24,7 +24,7 @@ #include <getopt.h> #include <assert.h> #include <ctype.h> -#include <sys/poll.h> +#include <poll.h> #include <sys/statvfs.h> #include <xen/xen.h> -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |