MPIEventMgrMessage

MPIEventMgrMessage

 

typedef enum {

    MPIEventMgrMessageEVENTMGR_INVALID,
} MPIEventMgrMessage;
Description
  MPIEventMgrMessageEVENTMGR_INVALID
  Meaning The MPIEventMgr handle passed to an MPIEventMgr method is invalid.
  Possible Causes Either the handle was never initialized or the mpiEventMgrCreate method failed.
  Recommendations Use mpiEventMgrValidate after mpiEventMgrCreate to see if the returned handle is valid.
Sample Code
 
MPIControl        control;
MPIEventMgr     eventMgr;
long                  returnValue;
.

eventMgr =
	mpiEventMgrCreate(control);
returnValue =
	mpiEventMgrValidate(eventMgr);
 
See Also MPIEventMgr | mpiEventMgrCreate | mpiEventMgrValidate