meiSqNodeSegmentMemoryGet
Declaration
|
long meiSqNodeSegmentMemoryGet(MEISqNode sqNode, long segment,
long memoryStart,
long memoryCount,
char *data); |
|
Required Header: stdmei.h
Change History: Added in the 03.03.00 |
Description
meiSqNodeSegmentMemoryGet gets the current value of the specified slice memory registers from the sqNode.
|
sqNode |
a handle to a SqNode object. |
segment |
the index of the slice / module attached to this SynqNet node. |
memoryStart |
the first memory register to get. |
memoryCount |
the number of memory registers to get. |
*data |
a pointer to the array of memory registers that will be filled in by this function. |
|
|
|
|
|
Sample Code
Here is the code to read the first ten memory parameters on slice 1.
|
char memory[10];
meiSqNodeSegementMemoryGet( sqNode, 1, 0, 10, memory );
|
|
See Also
Overview of MPI I/O | meiSqNodeSliceMemorySet
|