MAPREDUCE-4383. HadoopPipes.cc needs to include unistd.h. Contributed by Andy Isaacson

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1355555 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Eli Collins 2012-06-29 20:57:20 +00:00
parent d1f05ce29f
commit cd9ce99740
2 changed files with 4 additions and 0 deletions

View File

@ -196,6 +196,9 @@ Branch-2 ( Unreleased changes )
MAPREDUCE-4376. TestClusterMRNotification times out (Kihwal Lee via bobby)
MAPREDUCE-4383. HadoopPipes.cc needs to include unistd.h.
(Andy Isaacson via eli)
Release 2.0.0-alpha - 05-23-2012
INCOMPATIBLE CHANGES

View File

@ -30,6 +30,7 @@
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#include <unistd.h>
#include <sys/socket.h>
#include <pthread.h>
#include <iostream>