mpiEventMgrNotifyListSet

Declaration
long mpiEventMgrNotifyListSet(MPIEventMgr  eventMgr,
                              long         notifyCount,
                              MPINotify    *notifyList)
Required Header stdmpi.h
Description

EventMgrNotifyListSet creates a list of Notify objects, where the number of Notify objects is specified by notifyCount, using the Notify handles specified by notifyList. The notifyList argument is the address of an array of notifyCount Notify handles, or is NULL if notifyCount is zero. Any existing notify object list is completely replaced.

You can also create a Notify object list incrementally (i.e., one Notify object is created at a time), by using the EventMgrAppend and/or EventMgrInsert methods. After creating a list of Notify objects, use the EventMgrList methods to examine and manipulate the list, regardless of how the list was created.

Return Values
MPIMessageOK if EventMgrNotifyListSet successfully creates a list of Notify objects using the Notify handles specified by notifyList
See Also mpiEventMgrNotifyListGet