mpiNotifySourceListSet

Declaration
long mpiNotifySourceListSet(MPINotify notify,
                            long      sourceCount,
                            void      **sourceList) 
Required Header stdmpi.h
Description

NotifySourceListSet creates an event source list of length sourceCount, using the source pointers specified by sourceList. The sourceList argument is the address of an array of sourceCount event source pointers, or is NULL (if sourceCount = 0). Any existing event source list is completely replaced after using NotifySourceListSet.

You can also create an event source list incrementally (i.e., created one source at a time) by using NotifySourceAppend/Insert methods. To specify the first event source of a list, use the source argument of mpiNotifyCreate(...). Use the NotifySourceList methods to examine and manipulate an event source list, regardless of how you created it.

Return Values
MPIMessageOK if NotifySourceListSet successfully creates an event source list using the source pointers specified by sourceList
See Also NotifySourceAppend | NotifySourceInsert | mpiNotifyCreate | mpiNotifySourceListGet