Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Unified Diff: tools/android/common/adb_connection.cc

Issue 100253002: Don't HANDLE_EINTR(close). Either IGNORE_EINTR(close) or just close. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/leveldatabase/env_chromium.cc ('k') | tools/android/common/daemon.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/android/common/adb_connection.cc
diff --git a/tools/android/common/adb_connection.cc b/tools/android/common/adb_connection.cc
index 91c25fed20c7143b92da85d960e0c491fa51c5f6..9985a3a711e014d5a0fbe63dd87a98aee7bfe5dd 100644
--- a/tools/android/common/adb_connection.cc
+++ b/tools/android/common/adb_connection.cc
@@ -22,7 +22,7 @@ namespace {
void CloseSocket(int fd) {
if (fd >= 0) {
int old_errno = errno;
- (void) HANDLE_EINTR(close(fd));
+ close(fd);
errno = old_errno;
}
}
« no previous file with comments | « third_party/leveldatabase/env_chromium.cc ('k') | tools/android/common/daemon.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698