summaryrefslogtreecommitdiffstats
path: root/cmds
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2015-05-15 17:05:40 -0700
committerElliott Hughes <enh@google.com>2015-05-15 17:05:40 -0700
commit997abb668b9248c2174c6cf169a0b7c6a02fd2cb (patch)
tree22a20d411ac16f4829e225ddf1cd60fef7a5ad73 /cmds
parent9188b4bb5d44c219face5a4c1c681700cc838294 (diff)
downloadframeworks_native-997abb668b9248c2174c6cf169a0b7c6a02fd2cb.zip
frameworks_native-997abb668b9248c2174c6cf169a0b7c6a02fd2cb.tar.gz
frameworks_native-997abb668b9248c2174c6cf169a0b7c6a02fd2cb.tar.bz2
Don't use TEMP_FAILURE_RETRY on close in frameworks/native.
Bug: http://b/20501816 Change-Id: Id13a62f02243c6c4831e2f47944dc34fa822f5b6
Diffstat (limited to 'cmds')
-rw-r--r--cmds/bugreport/bugreport.cpp2
-rw-r--r--cmds/dumpstate/utils.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/cmds/bugreport/bugreport.cpp b/cmds/bugreport/bugreport.cpp
index b606406..6892b57 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 4fc23aa..44ba025 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");