#include "Bdef.h"

void BI_Arecv(BLACSCONTEXT *ctxt, int src, int msgid, BLACBUFF *bp)
{
   int i, info, errclass;

   BI_MPI_Irecv(bp->Buff, bp->N, bp->dtype, src, msgid, ctxt->scp->comm,
                &bp->Aops[bp->nAops], info);
   while(info != BI_MPI_SUCCESS)
   {
      BI_MPI_Error_class(info, &errclass, i);
      if ( (errclass != BI_MPI_ERR_UNKNOWN) && (errclass != BI_MPI_ERR_OTHER) &&
           (errclass != BI_MPI_ERR_INTERN) )
      {
	  Mmpierror(info, "MPI_Irecv", ctxt, __LINE__, __FILE__);
	  BI_BlacsErr(BI_ContxtNum(ctxt), __LINE__, __FILE__,
		      "MPI error %d on call to MPI_Irecv", info);
      }
#if (BlacsDebugLvl > 0)
      else BI_BlacsWarn(BI_ContxtNum(ctxt), __LINE__, __FILE__,
"MPI error %d assumed to mean out of non-blocking resources on call to MPI_Irecv",
                     info);
#endif
      BI_MPI_Irecv(bp->Buff, bp->N, bp->dtype, src, msgid, ctxt->scp->comm,
                   &bp->Aops[bp->nAops], info);
   }
   bp->nAops++;
/*
 * Signal if we need to use status to figure out true length of received message
 * We only need do this if we are doing our own buffering
 */
#ifndef MpiBuffGood
   if (bp->dtype == BI_MPI_PACKED) bp->N = -bp->nAops;
#endif
}


syntax highlighted by Code2HTML, v. 0.9.1