1
1

update the error codes reported by file_delete

Этот коммит содержится в:
Edgar Gabriel 2016-10-18 09:52:09 -05:00
родитель a659cb2fda
Коммит 74441b960b

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

@ -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;