Don't use TEMP_FAILURE_RETRY on close in bionic.
Bug: http://b/20501816 Change-Id: Id64b5109cc2b165fa0351b6edbb865a5e5058008
This commit is contained in:
@@ -86,5 +86,5 @@ __sseek(void *cookie, fpos_t offset, int whence)
|
||||
int
|
||||
__sclose(void *cookie)
|
||||
{
|
||||
return TEMP_FAILURE_RETRY(close(((FILE *)cookie)->_file));
|
||||
return close(((FILE *)cookie)->_file);
|
||||
}
|
||||
|
Reference in New Issue
Block a user