00001 
00002 
00003 
00004 
00005 
00006 
00007 
00008 #include "mpioimpl.h"
00009 
00010 #ifdef HAVE_WEAK_SYMBOLS
00011 
00012 #if defined(HAVE_PRAGMA_WEAK)
00013 #pragma weak MPI_File_read_at_all_end = PMPI_File_read_at_all_end
00014 #elif defined(HAVE_PRAGMA_HP_SEC_DEF)
00015 #pragma _HP_SECONDARY_DEF PMPI_File_read_at_all_end MPI_File_read_at_all_end
00016 #elif defined(HAVE_PRAGMA_CRI_DUP)
00017 #pragma _CRI duplicate MPI_File_read_at_all_end as PMPI_File_read_at_all_end
00018 
00019 #endif
00020 
00021 
00022 #define MPIO_BUILD_PROFILING
00023 #include "mpioprof.h"
00024 #endif
00025 
00026 
00027 
00028 
00029 
00030 
00031 
00032 
00033 
00034 
00035 
00036 
00037 
00038 
00039 int MPI_File_read_at_all_end(MPI_File mpi_fh, void *buf, MPI_Status *status)
00040 {
00041     int error_code;
00042     static char myname[] = "MPI_FILE_READ_AT_ALL_END";
00043 
00044 
00045     error_code = MPIOI_File_read_all_end(mpi_fh, buf, myname, status);
00046 
00047     return error_code;
00048 }