mpiControlConfigGet

Declaration

MPI_RESULT
   mpiControlConfigGet(MPIControl          control,
                       MPIControlConfig    *config);

 

Required Header: stdmpi.h

Change History: Modified in 04.00.

Description

mpiControlConfigGet gets the configuration of a Control object (control) and writes it into the structure pointed to by config,.

control A handle to an Control object.
*config A pointer to the MPIControlConfig structure.
Return Values
MPIMessageOK

Sample Code

MPIControlConfig   controlConfig;

mpiControlConfigGet(control, &controlConfig);
/* Allocate 16 captures and enable 4 */ controlConfig.dynamicMemAlloc.captureCount = 16; controlConfig.enabled.captureCount = 4; mpiControlConfigSet(control, &controlConfig);

See Also

mpiControlConfigSet | MPIControlConfig |