MPINotifyMessage

MPINotifyMessage

 

typedef enum {

    MPINotifyMessageNOTIFY_INVALID,
    MPINotifyMessageWAIT_IN_PROGRESS,
} MPINotifyMessage;
Description
  MPINotifyMessageNOTIFY_INVALID
  Meaning The MPINotify handle passed to an MPINotify method is invalid.
  Possible Causes Either the handle was never initialized or the mpiNotifyCreate method failed.
  Recommendations Use mpiNotifyValidate after mpiNotifyCreate to see if the returned handle is valid.
   
  MPINotifyMessageWAIT_IN_PROGRESS
  Meaning The MPINotify object is already set to wait for an event in another thread.
  Possible Causes  
  Recommendations Have each thread use its own set of MPINotify objects.
       
Sample Code
 
MPIControl    control;
MPINotify      notify;
long              returnValue;
.

notify =
	mpiNotifyCreate(control);
returnValue =
	mpiNotifyValidate(notify);
 
See Also MPINotify | mpiNotifyCreate | mpiNotifyValidate