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 MPIO_Testany = PMPIO_Testany
00014 #elif defined(HAVE_PRAGMA_HP_SEC_DEF)
00015 #pragma _HP_SECONDARY_DEF PMPIO_Testany MPIO_Testany
00016 #elif defined(HAVE_PRAGMA_CRI_DUP)
00017 #pragma _CRI duplicate MPIO_Testany as PMPIO_Testany
00018
00019 #endif
00020
00021
00022 #define MPIO_BUILD_PROFILING
00023 #include "mpioprof.h"
00024 #endif
00025
00026
00027
00028
00029
00030
00031 int MPIO_Testany(int count, MPIO_Request requests[], int *index,
00032 int *flag, MPI_Status *status)
00033 {
00034 int i, err;
00035 MPIU_THREADPRIV_DECL;
00036
00037 MPIU_THREAD_CS_ENTER(ALLFUNC,);
00038
00039 if (count == 1) {
00040 err = MPIO_Test( requests, flag, status );
00041 if (!err) *index = 0;
00042 goto fn_exit;
00043 }
00044
00045
00046 for (i=0; i<count; i++) {
00047 if (requests[i] != MPIO_REQUEST_NULL) {
00048 break;
00049 }
00050 }
00051 if (i == count) {
00052 *index = MPI_UNDEFINED;
00053 #ifdef MPICH2
00054
00055 if (status != MPI_STATUS_IGNORE) {
00056 status->MPI_SOURCE = MPI_ANY_SOURCE;
00057 status->MPI_TAG = MPI_ANY_TAG;
00058 status->count = 0;
00059 status->cancelled = 0;
00060 }
00061 #endif
00062 err = MPI_SUCCESS;
00063 goto fn_exit;
00064 }
00065
00066 err = MPI_SUCCESS;
00067 for (i=0; i<count; i++) {
00068 if (requests[i] != MPIO_REQUEST_NULL) {
00069 err = MPIO_Test( &requests[i], flag, status );
00070 if (*flag) {
00071 if (!err) *index = i;
00072 break;
00073 }
00074 }
00075 }
00076
00077
00078 fn_exit:
00079 MPIU_THREAD_CS_EXIT(ALLFUNC,);
00080 return err;
00081 }