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

Unified Diff: third_party/leveldatabase/env_chromium.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 | « sandbox/linux/tests/unit_tests.cc ('k') | tools/android/common/adb_connection.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/leveldatabase/env_chromium.cc
diff --git a/third_party/leveldatabase/env_chromium.cc b/third_party/leveldatabase/env_chromium.cc
index 0239fc733a2e5bcfa09e1e4a4271a74162a2fa1b..ad9aef057733ecc1fa83b7f297b34e9016c06172 100644
--- a/third_party/leveldatabase/env_chromium.cc
+++ b/third_party/leveldatabase/env_chromium.cc
@@ -537,7 +537,7 @@ Status ChromiumWritableFile::SyncParent() {
s = MakeIOError(
parent_dir_, strerror(saved_errno), kSyncParent, saved_errno);
};
- HANDLE_EINTR(close(parent_fd));
+ close(parent_fd);
#endif
return s;
}
« no previous file with comments | « sandbox/linux/tests/unit_tests.cc ('k') | tools/android/common/adb_connection.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698