Index: content/zygote/zygote_main_linux.cc |
diff --git a/content/zygote/zygote_main_linux.cc b/content/zygote/zygote_main_linux.cc |
index 93ab269b3a6fff8a60a40a9d7d0a7b4e2a66fccd..1d32ab09f12620a439c3c9d02ae0cdddf52ba87f 100644 |
--- a/content/zygote/zygote_main_linux.cc |
+++ b/content/zygote/zygote_main_linux.cc |
@@ -5,6 +5,7 @@ |
#include "content/zygote/zygote_main.h" |
#include <dlfcn.h> |
+#include <errno.h> |
#include <fcntl.h> |
#include <pthread.h> |
#include <stdio.h> |
@@ -21,7 +22,6 @@ |
#include "base/linux_util.h" |
#include "base/native_library.h" |
#include "base/pickle.h" |
-#include "base/posix/eintr_wrapper.h" |
#include "base/posix/unix_domain_socket_linux.h" |
#include "base/rand_util.h" |
#include "base/sys_info.h" |
@@ -311,7 +311,7 @@ static void PreSandboxInit() { |
} |
static void CloseFdAndHandleEintr(int fd) { |
- (void) HANDLE_EINTR(close(fd)); |
+ close(fd); |
} |
// This will set the *using_suid_sandbox variable to true if the SUID sandbox |