mpiNotifySourcePrevious
Declaration
|
void * mpiNotifySourcePrevious(MPINotify notify,
void *source)
|
|
Required Header: stdmpi.h |
Description
mpiNotifySourcePrevious returns the previous element prior to "source" on the list. This function can be used in conjuntion with mpiNotifySourceLast() in order to iterate through the list backwards.
|
notify |
a handle to the Notify object. |
source |
a pointer with an arbitrary (but non-NULL) value. |
|
|
|
|
Return Values |
event source |
before the event source (source) in the event source list maintained by a Notify object (notify) |
NULL |
if notify is invalid
if the event source (source) is the first event source in the event source list |
MPIMessageHANDLE_INVALID |
|
|
See Also
mpiNotifySourceNext
|