1
1

Merge pull request #2238 from edgargabriel/pr/delete-error-codes

update the error codes reported by file_delete
Этот коммит содержится в:
Edgar Gabriel 2016-10-25 12:38:03 -05:00 коммит произвёл GitHub
родитель 028e747470 74441b960b
Коммит 2076622924

Просмотреть файл

@ -113,9 +113,14 @@ int mca_io_ompio_file_delete (const char *filename,
*/
ret = unlink(filename);
if (0 > ret && ENOENT != errno ) {
opal_output (1, "errno = %d %s\n", errno, strerror(errno));
return MPI_ERR_ACCESS;
if (0 > ret ) {
if ( ENOENT == errno ) {
// opal_output (1, "errno = %d %s\n", errno, strerror(errno));
return MPI_ERR_NO_SUCH_FILE;
} else {
opal_output (1, "errno = %d %s\n", errno, strerror(errno));
return MPI_ERR_ACCESS;
}
}
return OMPI_SUCCESS;