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_Waitany = PMPIO_Waitany
00014 #elif defined(HAVE_PRAGMA_HP_SEC_DEF)
00015 #pragma _HP_SECONDARY_DEF PMPIO_Waitany MPIO_Waitany
00016 #elif defined(HAVE_PRAGMA_CRI_DUP)
00017 #pragma _CRI duplicate MPIO_Waitany as PMPIO_Waitany
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_Waitany(int count, MPIO_Request requests[], int *index,
00032 MPI_Status *status)
00033 {
00034 int i, flag, err;
00035 MPIU_THREADPRIV_DECL;
00036
00037 MPIU_THREAD_CS_ENTER(ALLFUNC,);
00038
00039 if (count == 1) {
00040 err = MPIO_Wait( requests, 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 do {
00068 flag = 0;
00069 for (i=0; i<count; i++) {
00070 if (requests[i] != MPIO_REQUEST_NULL) {
00071 err = MPIO_Test( &requests[i], &flag, status );
00072 if (flag) {
00073 if (!err) *index = i;
00074 break;
00075 }
00076 }
00077 }
00078 } while (flag == 0);
00079
00080 fn_exit:
00081 MPIU_THREAD_CS_EXIT(ALLFUNC,);
00082
00083 return err;
00084 }