MPI 04.00 Reference>>mpiNotify
mpiNotifyEventPost
Declaration
MPI_RESULT mpiNotifyEventPost(MPINotify notify, const MPIEventData *eventData);
Required Header: stdmpi.h
Change History: Added in 04.00.
Description
mpiNotifyEventPost(…) posts an event to a Notify object. Events posted to the Notify object are consumed by subsequent calls to mpiNotifyEventWait(…) or mpiNotifyEventWaitSpecific(…).
Note: This method does not attempt to wake up threads because it may be necessary to post several events to a notify object prior to signaling the notify object to wake up a thread. mpiNotifyEventSignal(…) signals a thread to wake up if there are events to process and a thread is waiting on the notify object for events.
notify | The Notify object to which event data is to be posted. |
---|---|
eventData | The event data to post to the notify object. |
See Also
mpiNotifyEventSignal | mpiNotifyEventWait | mpiNotifyEventWaitSpecific