2004-01-29 21:42:40 +00:00
|
|
|
/*
|
2004-11-22 01:38:40 +00:00
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University.
|
|
|
|
* All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
|
|
|
* All rights reserved.
|
2004-11-28 20:09:25 +00:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
2005-03-24 12:43:37 +00:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2004-11-22 01:38:40 +00:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
2004-10-15 19:31:47 +00:00
|
|
|
* $HEADER$
|
2004-01-29 21:42:40 +00:00
|
|
|
*/
|
2004-06-07 15:33:53 +00:00
|
|
|
#include "ompi_config.h"
|
2004-01-29 21:42:40 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2004-03-17 18:45:16 +00:00
|
|
|
#include "mpi/c/bindings.h"
|
2005-09-12 09:17:44 +00:00
|
|
|
#include "ompi/request/request.h"
|
2004-01-29 21:42:40 +00:00
|
|
|
|
2004-06-07 15:33:53 +00:00
|
|
|
#if OMPI_HAVE_WEAK_SYMBOLS && OMPI_PROFILING_DEFINES
|
2004-01-29 21:42:40 +00:00
|
|
|
#pragma weak MPI_Request_get_status = PMPI_Request_get_status
|
|
|
|
#endif
|
|
|
|
|
2004-06-07 15:33:53 +00:00
|
|
|
#if OMPI_PROFILING_DEFINES
|
2004-04-20 18:50:43 +00:00
|
|
|
#include "mpi/c/profile/defines.h"
|
|
|
|
#endif
|
|
|
|
|
2004-07-30 02:58:53 +00:00
|
|
|
static const char FUNC_NAME[] = "MPI_Request_get_status";
|
|
|
|
|
2005-02-23 23:50:52 +00:00
|
|
|
/* Non blocking test for the request status. Upon completion, the request will
|
|
|
|
* not be freed (unlike the test function). A subsequent call to test, wait
|
|
|
|
* or free should be executed on the request.
|
|
|
|
*/
|
2004-01-29 21:42:40 +00:00
|
|
|
int MPI_Request_get_status(MPI_Request request, int *flag,
|
2004-07-30 02:58:53 +00:00
|
|
|
MPI_Status *status)
|
|
|
|
{
|
2005-02-23 23:50:52 +00:00
|
|
|
if( MPI_PARAM_CHECK ) {
|
|
|
|
OMPI_ERR_INIT_FINALIZE(FUNC_NAME);
|
2005-02-24 00:13:27 +00:00
|
|
|
if( (NULL == flag) || (NULL == status) ) {
|
2005-02-23 23:50:52 +00:00
|
|
|
return OMPI_ERRHANDLER_INVOKE(MPI_COMM_WORLD, MPI_ERR_ARG, FUNC_NAME);
|
|
|
|
}
|
|
|
|
}
|
2004-07-30 02:58:53 +00:00
|
|
|
|
2005-07-03 21:38:51 +00:00
|
|
|
opal_atomic_mb();
|
2005-02-23 23:50:52 +00:00
|
|
|
if( (request == MPI_REQUEST_NULL) || (request->req_state == OMPI_REQUEST_INACTIVE) ) {
|
|
|
|
*flag = true;
|
|
|
|
if( MPI_STATUS_IGNORE != status ) {
|
|
|
|
*status = ompi_status_empty;
|
|
|
|
}
|
|
|
|
return MPI_SUCCESS;
|
|
|
|
}
|
|
|
|
if( request->req_complete ) {
|
|
|
|
*flag = true;
|
|
|
|
if (MPI_STATUS_IGNORE != status) {
|
|
|
|
*status = request->req_status;
|
|
|
|
}
|
|
|
|
return MPI_SUCCESS;
|
|
|
|
}
|
|
|
|
*flag = false;
|
|
|
|
#if OMPI_ENABLE_PROGRESS_THREADS == 0
|
2005-07-03 21:57:43 +00:00
|
|
|
opal_progress();
|
2005-02-23 23:50:52 +00:00
|
|
|
#endif
|
|
|
|
return MPI_SUCCESS;
|
2004-01-29 21:42:40 +00:00
|
|
|
}
|