00001
00002
00003
00004
00005
00006
00007
00008 #include <stdarg.h>
00009 #include <stdio.h>
00010
00011 #include "mpioimpl.h"
00012 #include "adio_extern.h"
00013
00014
00015
00016 int MPIO_Err_create_code(int lastcode, int fatal, const char fcname[],
00017 int line, int error_class, const char generic_msg[],
00018 const char specific_msg[], ... )
00019 {
00020 va_list Argp;
00021 int error_code;
00022
00023 va_start(Argp, specific_msg);
00024
00025 error_code = MPIR_Err_setmsg(error_class, 0, fcname, generic_msg,
00026 specific_msg, Argp);
00027
00028 vfprintf(stderr, specific_msg, Argp);
00029
00030 va_end(Argp);
00031
00032 return error_code;
00033 }
00034
00035 int MPIO_Err_return_file(MPI_File mpi_fh, int error_code)
00036 {
00037 char buf[MPI_MAX_ERROR_STRING];
00038 int myrank, result_len;
00039 MPI_Errhandler err_handler;
00040
00041 if (mpi_fh == MPI_FILE_NULL) err_handler = ADIOI_DFLT_ERR_HANDLER;
00042 else {
00043 ADIO_File fh;
00044 fh = MPIO_File_resolve(mpi_fh);
00045 err_handler = fh->err_handler;
00046 }
00047
00048 MPI_Comm_rank(MPI_COMM_WORLD, &myrank);
00049 if (err_handler == MPI_ERRORS_ARE_FATAL) {
00050 MPI_Error_string(error_code, buf, &result_len);
00051 FPRINTF(stderr, "[%d] %s\n", myrank, buf);
00052 MPI_Abort(MPI_COMM_WORLD, 1);
00053 }
00054 else if (err_handler != MPI_ERRORS_RETURN) {
00055 FPRINTF(stderr, "Only MPI_ERRORS_RETURN and MPI_ERRORS_ARE_FATAL are currently supported as error handlers for files\n");
00056 MPI_Abort(MPI_COMM_WORLD, 1);
00057 }
00058
00059 return error_code;
00060 }
00061
00062 int MPIO_Err_return_comm(MPI_Comm mpi_comm, int error_code)
00063 {
00064 return MPIO_Err_return_file(MPI_FILE_NULL, error_code);
00065 }