mpiEventMaskBitSET
Declaration
#define mpiEventMaskBitSET(mask,bit,value)
Required Header: stdmpi.h
Description
mpiEventMaskBitSET is a macro that sets (value = TRUE) or clears (value = FALSE) the bit associated with a MPI event in the event mask. After the event mask bits are initialized, the mask can be passed to a mpiObjectEventNotifySet(...) method which configures the controller to generate events.
mask | An array of unsigned longs. Use MPIEventMask to declare the mask. Each bit in the array represents a mask for a particular event. |
---|---|
bit | A bit number associated with an event type in an event mask. |
value | TRUE to set a bit, FALSE to clear a bit. |