meiSqNodeSegmentParamSet
Declaration
|
long meiSqNodeSegmentParamSet(MEISqNode sqNode, long segment,
long paramStart,
long paramCount,
char *params); |
|
Required Header: stdmei.h
Change History: Added in the 03.03.00 |
Description
meiSqNodeSegmentParamSet gets the current value of the specified slice parameters from the sqNode.
|
sqNode |
a handle to a SqNode object. |
segment |
the index of the slice / module attached to this SynqNet node. |
paramStart |
the first parameter to set. |
paramCount |
the number of parameters to set. |
*params |
a pointer to the array of parameters that be written to the segment by this function. |
|
|
|
|
|
Sample Code
For example to get the first two slice parameters on slice 1.
|
char parameters[2]; =
{ ‘\x00’, ‘\x0F’ };
meiSqNodeSegmentParamSet( sqNode0, 1, 0, 2, parameters );
|
|
See Also
Overview of MPI I/O | meiSqNodeSliceParamGet
|