Index: base/files/memory_mapped_file_posix.cc |
diff --git a/base/files/memory_mapped_file_posix.cc b/base/files/memory_mapped_file_posix.cc |
index ba00946722c7962da445261b89cb2e82b2c7cd85..c4c477a3fe71944903c486107d90336a26258a91 100644 |
--- a/base/files/memory_mapped_file_posix.cc |
+++ b/base/files/memory_mapped_file_posix.cc |
@@ -9,7 +9,6 @@ |
#include <unistd.h> |
#include "base/logging.h" |
-#include "base/posix/eintr_wrapper.h" |
#include "base/threading/thread_restrictions.h" |
namespace base { |
@@ -44,7 +43,7 @@ void MemoryMappedFile::CloseHandles() { |
if (data_ != NULL) |
munmap(data_, length_); |
if (file_ != kInvalidPlatformFileValue) |
- ignore_result(HANDLE_EINTR(close(file_))); |
+ close(file_); |
data_ = NULL; |
length_ = 0; |