meiSqNodeSegmentParamGet
Declaration
|
long meiSqNodeSegmentParamGet(MEISqNode sqNode, long segment,
long paramStart,
long paramCount,
char *params); |
|
Required Header: stdmei.h
Change History: Added in the 03.03.00 |
Description
meiSqNodeSegmentParamGet 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 get. |
paramCount |
the number of parameters to get. |
*params |
a pointer to the array of parameters that will be filled in by this function. |
|
|
|
|
|
Sample Code
For example to get the first two slice parameters on slice 1.
|
char parameters[2];
meiSqNodeSegmentParamGet( sqNode0, 1, 0, 2, parameters );
|
|
See Also
meiSqNodeSliceParamSet | Overview of MPI I/O
|