Imported Upstream version 6.12.0.140

Former-commit-id: ed640e59d63de60be89ee9bbe5a6b63afcf639f5
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2021-04-30 08:47:39 +00:00
parent 611f410153
commit 3cbb9c7924
59 changed files with 808 additions and 754 deletions

View File

@@ -455,7 +455,7 @@ int32_t SystemNative_ReadDirR(DIR* dir, uint8_t* buffer, int32_t bufferSize, str
// kernel set errno -> failure
if (errno != 0)
{
assert_err(errno == EBADF, "Invalid directory stream descriptor dir", errno);
assert_err(errno == EBADF || errno == EINTR, "Invalid directory stream descriptor dir", errno);
return errno;
}
return -1;