| 516 | |
| 517 | |
| 518 | void |
| 519 | Test (MPI_Request& request, int& flag, MPI_Status& status) |
| 520 | { |
| 521 | BL_PROFILE_S("ParallelDescriptor::Test()"); |
| 522 | BL_COMM_PROFILE(BLProfiler::Test, sizeof(char), status.MPI_SOURCE, status.MPI_TAG); |
| 523 | |
| 524 | BL_MPI_REQUIRE( MPI_Test(&request,&flag,&status) ); |
| 525 | |
| 526 | BL_COMM_PROFILE(BLProfiler::Test, flag, BLProfiler::AfterCall(), status.MPI_TAG); |
| 527 | } |
| 528 | |
| 529 | void |
| 530 | Test (Vector<MPI_Request>& request, int& flag, Vector<MPI_Status>& status) |
no test coverage detected