diff options
author | 2015-05-15 17:05:40 -0700 | |
---|---|---|
committer | 2015-05-15 17:05:40 -0700 | |
commit | 997abb668b9248c2174c6cf169a0b7c6a02fd2cb (patch) | |
tree | 22a20d411ac16f4829e225ddf1cd60fef7a5ad73 | |
parent | 9188b4bb5d44c219face5a4c1c681700cc838294 (diff) |
Don't use TEMP_FAILURE_RETRY on close in frameworks/native.
Bug: http://b/20501816
Change-Id: Id13a62f02243c6c4831e2f47944dc34fa822f5b6
-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"); |