00001
00002
00003
00004
00005
00006
00007
00008 #include "adio.h"
00009
00010 #ifdef HAVE_UNISTD_H
00011 #include <unistd.h>
00012 #endif
00013
00014 void ADIOI_GEN_Delete(char *filename, int *error_code)
00015 {
00016 int err;
00017 static char myname[] = "ADIOI_GEN_DELETE";
00018
00019 err = unlink(filename);
00020 if (err == -1) {
00021 *error_code = MPIO_Err_create_code(MPI_SUCCESS, MPIR_ERR_RECOVERABLE,
00022 myname, __LINE__, MPI_ERR_IO, "**io",
00023 "**io %s", strerror(errno));
00024 return;
00025 }
00026 else *error_code = MPI_SUCCESS;
00027 }