HADOOP-11974. Fix FIONREAD #include on Solaris (Alan Burlison via Colin P. McCabe)
Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/81f36443 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/81f36443 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/81f36443 Branch: refs/heads/HADOOP-12111 Commit: 81f364437608b21e85fc393f63546bf8b425ac71 Parents: bf89ddb Author: Colin Patrick Mccabe <[email protected]> Authored: Mon Jul 6 12:56:34 2015 -0700 Committer: Colin Patrick Mccabe <[email protected]> Committed: Mon Jul 6 17:17:59 2015 -0700 ---------------------------------------------------------------------- hadoop-common-project/hadoop-common/CHANGES.txt | 3 +++ .../native/src/org/apache/hadoop/net/unix/DomainSocket.c | 9 ++++++++- 2 files changed, 11 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/81f36443/hadoop-common-project/hadoop-common/CHANGES.txt ---------------------------------------------------------------------- diff --git a/hadoop-common-project/hadoop-common/CHANGES.txt b/hadoop-common-project/hadoop-common/CHANGES.txt index fab78d4..faf5a5c 100644 --- a/hadoop-common-project/hadoop-common/CHANGES.txt +++ b/hadoop-common-project/hadoop-common/CHANGES.txt @@ -678,6 +678,9 @@ Release 2.8.0 - UNRELEASED HADOOP-12045. Enable LocalFileSystem#setTimes to change atime. (Kazuho Fujii via cnauroth) + HADOOP-11974. Fix FIONREAD #include on Solaris (Alan Burlison via Colin P. + McCabe) + OPTIMIZATIONS HADOOP-11785. Reduce the number of listStatus operation in distcp http://git-wip-us.apache.org/repos/asf/hadoop/blob/81f36443/hadoop-common-project/hadoop-common/src/main/native/src/org/apache/hadoop/net/unix/DomainSocket.c ---------------------------------------------------------------------- diff --git a/hadoop-common-project/hadoop-common/src/main/native/src/org/apache/hadoop/net/unix/DomainSocket.c b/hadoop-common-project/hadoop-common/src/main/native/src/org/apache/hadoop/net/unix/DomainSocket.c index a3f27ee..e658d8f 100644 --- a/hadoop-common-project/hadoop-common/src/main/native/src/org/apache/hadoop/net/unix/DomainSocket.c +++ b/hadoop-common-project/hadoop-common/src/main/native/src/org/apache/hadoop/net/unix/DomainSocket.c @@ -31,7 +31,14 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <sys/ioctl.h> /* for FIONREAD */ + +/* For FIONREAD */ +#if defined(__sun) +#include <sys/filio.h> +#else +#include <sys/ioctl.h> +#endif + #include <sys/socket.h> #include <sys/stat.h> #include <sys/types.h>
