MPI 04.00 Reference>>mpiNotify

mpiNotifyEventWake

Declaration

MPI_RESULT 
   mpiNotifyEventWake(MPINotify    notify,
                      MPIEventData *eventData);

Description

mpiNotifyEventWake wakes a thread that is waiting for an event notification from a Notify object (notify). The awakened thread will return from its call copying the contents of eventData. If status is NULL, status will indicate an event of type MPIEventTypeNONE.

mpiNotifyEventWake is different from mpiNotifyEventPost, because event notification is not accepted based on the event type or source; instead event notification is always accepted.

notify The Notify object that will be waken.
eventData Pointer to the MPIEventData structure to copy.

See Also

mpiNotifyEventWait