diff options
author | 2015-05-16 00:35:35 +0000 | |
---|---|---|
committer | 2015-05-16 00:35:35 +0000 | |
commit | b8e6cb08ebcf7b55fd8d94f3ecf29f73a7886fa8 (patch) | |
tree | ae4be5525cdb1dae3f05422b1b0f59e1235cfad3 | |
parent | 81103f128d651d705c90b3ab9fe55bff674320ef (diff) | |
parent | e814b43c581b16e144328c405a003ffece9ebf4d (diff) |
am e814b43c: Merge "Don\'t use TEMP_FAILURE_RETRY on close in frameworks/native."
* commit 'e814b43c581b16e144328c405a003ffece9ebf4d':
Don't use TEMP_FAILURE_RETRY on close in frameworks/native.
-rw-r--r-- | cmds/bugreport/bugreport.cpp | 2 | ||||
-rw-r--r-- | cmds/dumpstate/utils.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cmds/bugreport/bugreport.cpp b/cmds/bugreport/bugreport.cpp index b606406df1..6892b57f88 100644 --- a/cmds/bugreport/bugreport.cpp +++ b/cmds/bugreport/bugreport.cpp @@ -86,6 +86,6 @@ int main() { } while (bytes_written != 0 && bytes_to_send > 0); } - TEMP_FAILURE_RETRY(close(s)); + close(s); return 0; } diff --git a/cmds/dumpstate/utils.c b/cmds/dumpstate/utils.c index 4fc23aa3c7..44ba025ca0 100644 --- a/cmds/dumpstate/utils.c +++ b/cmds/dumpstate/utils.c @@ -306,7 +306,7 @@ static int _dump_file_from_fd(const char *title, const char *path, int fd) { } } } - TEMP_FAILURE_RETRY(close(fd)); + close(fd); if (!newline) printf("\n"); if (title) printf("\n"); |