/*D
   MPI_Probe - Blocking test for a message

Synopsis:
.vb
int MPI_Probe(int source, int tag, MPI_Comm comm, MPI_Status *status)
.ve

Input Parameters:
+ source - rank of source or MPI_ANY_SOURCE (integer)
. tag - message tag or MPI_ANY_TAG (integer)
- comm - communicator (handle)

Output Parameters:
. status - status object (Status)

.N ThreadSafe

.N Fortran

.N Errors
.N MPI_SUCCESS
.N MPI_ERR_ARG
.N MPI_ERR_COMM
.N MPI_ERR_RANK
.N MPI_ERR_TAG
.N MPI_ERR_OTHER

D*/

